Remove do_simplify opt from split_2step

Removing this option to guarante that all arenas
are alternating

* spot/twaalgos/synthesis.hh: Here
* spot/twaalgos/synthesis.cc: Here
* spot/twaalgos/mealy_machine.cc: API change
* tests/python/aiger.py: API change
* tests/python/mealy.py: API change
* tests/python/split.py: API change
This commit is contained in:
Philipp Schlehuber 2021-09-22 12:52:03 +02:00
parent ddda68403f
commit 406bc8ed17
6 changed files with 27 additions and 63 deletions

View file

@ -46,7 +46,7 @@ def do_split(f, out_list):
outputs = spot.buddy.bddtrue
for a in out_list:
outputs &= spot.buddy.bdd_ithvar(aut.get_dict().varnum(spot.formula(a)))
s = spot.split_2step(aut, outputs, False, False)
s = spot.split_2step(aut, outputs, False)
return aut, s
aut, s = do_split('(FG !a) <-> (GF b)', ['b'])