dfa_determinize — Determinize NFA grammar network.
dfa_determinize
[-o outfile
] {dfafile}
dfa_determinize converts a non-deterministic .dfa
file into deterministic DFA. Output to standard output, or file
specified by "-o
" option.
This additional tool is not necessary on a grammar building procedure in Julius, since the grammar network generated by mkdfa.pl is always determinized.
Determinize foo.dfa
to bar.dfa
:
%
dfa_determinize -o bar.dfa foo.dfa
Another way:
%
dfa_determinize < foo.dfa > bar.dfa