UNPKG

@webwriter/automaton

Version:

Build, visualize and interactive automata of different kinds (DFA, NFA, PDA).

9 lines (6 loc) 219 B
import { DFA } from '../../automata/dfa'; import { NFA } from '../../automata/nfa'; export function DFAtoNFA(dfa: DFA): NFA { const nfa = new NFA(dfa.nodes.get(), dfa.transitions.get()); return nfa; }