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