Return an ambiguous word, or raise if the automaton is unambiguous.
Preconditions:
Postconditions:
See also:
import sys
import vcsn
a = vcsn.B.expression('abc').standard()
a
a.is_ambiguous()
try:
a.ambiguous_word()
except RuntimeError as err:
print("error:", err, file=sys.stderr)
a = vcsn.B.expression('in (xxyy + xx + yy)* out').automaton()
a
a.ambiguous_word()