Generate an automaton inductively from an expression.
The algo
might be:
"auto"
: same as "standard"
."standard"
generate a standard automaton.Postconditions:
"standard"
e.standard()
.See also:
Contrary to expression.standard, inductive
supports the extended expressions.
import vcsn
q = vcsn.context('lal_char(abc), q')
q.expression('(<1/6>a*+<1/3>b*)*').inductive('standard')
q.expression('[ab]*a[ab]{2} & [ab]*a[ac]{4}').inductive('standard')