parseaut: do not ignore the "unambiguous" property

Fixes #115.

* src/parseaut/parseaut.yy: Set the property on the output automaton.
* src/tests/unambig.test: Add a test case.
* NEWS: Mention the fix.
This commit is contained in:
Alexandre Duret-Lutz 2015-11-04 17:11:25 +01:00
parent cbaa94f911
commit bf5749189e
3 changed files with 53 additions and 2 deletions

View file

@ -436,6 +436,8 @@ header: format-version header-items
res.h->aut->prop_stutter_sensitive(ss);
bool iw = res.props.find("inherently-weak") != e;
res.h->aut->prop_inherently_weak(iw);
bool iu = res.props.find("unambiguous") != e;
res.h->aut->prop_unambiguous(iu);
}
}