automaton
.info(key=None, details=2)
¶A dictionary of facts about an automaton.
Arguments:
keys
: if specified, return just the corresponding result.details
: level of details, from 1 to 3See also:
import vcsn
a = vcsn.Q.expression('(<1/2>a*+<1/3>b*)*').automaton()
a
a.info(details=1)
a.info(details=2)
a.info('type')
a.info(details=3)
a.info('number of states')