Whether the automaton is complete, i.e., there is a transition from each state for each label.
Precondition:
See also:
In [1]:
import vcsn
a = vcsn.context('lal_char(a), z').expression('a*').standard()
a
Out[1]:
In [2]:
a.is_complete()
Out[2]:
In [3]:
a = vcsn.context('lal_char(ab), z').expression('a*').standard()
a
Out[3]:
In [4]:
a.is_complete()
Out[4]: