Return an ambiguous word, or raise if the automaton is unambiguous.
Preconditions:
Postconditions:
See also:
import vcsn
a = vcsn.context('lal_char(abcd), b').expression('abc').standard()
a
a.is_ambiguous()
try:
a.ambiguous_word()
except RuntimeError as err:
print("error:", err)
a = a + a
a
a.ambiguous_word()