Compute the transposition of determinization of transposed automaton.
Preconditions:
Postconditions:
input.transpose().determinize().transpose()
Caveats:
See also:
import vcsn
%%automaton -s a
context = "lal_char(ab), b"
$ -> 0
0 -> 1 a
0 -> 2 b
1 -> 3 b
2 -> 3 b
3 -> $
a.codeterminize()
The resulting automaton has states labeled with subsets of the input automaton set of states.
a.determinize()