twa: no default argument for property setters

This is a preliminary for the renaming suggested in #116.

* src/twa/twa.hh (prop_state_based_acc, prop_inherently_weak,
prop_deterministic, prop_unambiguous, prop_stutter_invariant,
prop_stutter_sensitive): Do not default the argument to true.
* src/parseaut/parseaut.yy, src/twaalgos/degen.cc,
src/twaalgos/dtbasat.cc, src/twaalgos/dtgbasat.cc,
src/twaalgos/minimize.cc, src/twaalgos/randomgraph.cc,
src/twaalgos/remfin.cc, src/twaalgos/sbacc.cc,
src/twaalgos/simulation.cc, src/twaalgos/totgba.cc,
wrap/python/tests/remfin.py: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-11-04 18:25:49 +01:00
parent bf5749189e
commit 8ea5f73c1a
12 changed files with 38 additions and 38 deletions

View file

@ -130,9 +130,9 @@ namespace spot
throw std::invalid_argument("random_graph() requires n>0 states");
auto res = make_twa_graph(dict);
if (deterministic)
res->prop_deterministic();
res->prop_deterministic(true);
if (state_acc)
res->prop_state_based_acc();
res->prop_state_based_acc(true);
int props_n = ap->size();
int* props = new int[props_n];