Kernel: Python 3
automaton.is_costandard
Whether an automaton is costandard, i.e.:
a single final state
whose (final) weight is 1
without outgoing transitions
This is equivalent to calling aut.transpose().is_standard()
.
See also:
Examples
In [1]:
In [2]:
Out[2]:
In [3]:
Out[3]:
False
In [4]:
Out[4]:
In [5]:
Out[5]:
False
In [6]:
Out[6]:
In [7]:
Out[7]:
False