Compute the transposition of determinization of transposed automaton.
Preconditions:
Postconditions:
input.transpose().determinize().transpose()
Caveats:
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.codeterminize()
Out[3]:
The resulting automaton has states labeled with subsets of the input automaton set of states.
In [4]:
a.determinize()
Out[4]: