NFA2DFA/src/FiniteAutomata.kt
GabrielTofvesson 53402051aa Fix accept states for NFA-DFA translation
Implement relevant loops as stdlib functions
2019-03-28 10:36:55 +01:00

52 lines
1.5 KiB
Kotlin

import dev.w1zzrd.automata.*
fun main(args: Array<String>){
// Create a language with the set of elements {0, 1}
val language = Language.makeLanguage(0, 1)
// Create a nondeterministic automaton
val nfa = Automaton(language, false)
// Declare states of the NFA
val stateS = nfa.makeState("s")
val stateA = nfa.makeState("a")
val stateB = nfa.makeState("b", true)
val stateC = nfa.makeState("c")
val stateD = nfa.makeState("d")
val stateE = nfa.makeState("e", true)
stateS.addEpsilon(stateA, stateC)
stateA.addConnective(1, stateB)
stateB.addConnective(0, stateB)
stateC.addConnective(1, stateB, stateD)
stateC.addConnective(0, stateB)
stateD.addConnective(0, stateE)
stateE.addConnective(arrayOf(0, 1), stateC)
// Declare S as the initial state
nfa.entryPoint = stateS
// Convert the NFA into an equivalent DFA
val dfa = nfa.toDeterministicAutomaton(true)
// Get a traverser for the DFA and manually traverse the string "1100", then print the resulting state
val dtraverser = dfa.makeTraverser()
dtraverser.traverse(1, 0, 0, 1, 0)
println("DFA simulation:")
println(dtraverser.currentState.toString())
println("Accepts: ${dfa.accepts(1, 0, 0, 1, 0)}\n")
// Do the same as above but for the NFA
val ntraverser = nfa.makeTraverser()
ntraverser.traverse(1, 0, 0, 1, 0)
println("NFA simulation:")
println(ntraverser.currentState.toString())
println("Accepts: ${nfa.accepts(1, 0, 0, 1, 0)}")
}