Whether the automaton is codeterministic (its transposition is deterministic).
Precondition:
See also:
In [1]:
import vcsn
In [2]:
%%automaton a
context = "lal_char(ab), b"
$ -> 0
0 -> 1 a
0 -> 2 b
1 -> 3 b
2 -> 3 b
3 -> $
In [3]:
a.is_codeterministic()
Out[3]:
In [4]:
a.transpose().is_deterministic()
Out[4]: