CGI: Better call of scc_filter.

* wrap/python/ajax/spot.in: Account for reverse and iterated simulations
when calling scc_filter the first time.
This commit is contained in:
Alexandre Duret-Lutz 2012-08-23 09:24:30 +02:00
parent dce79ffed5
commit 70306d184e

View file

@ -625,7 +625,10 @@ if prune_scc:
# Do not suppress all useless acceptance conditions if # Do not suppress all useless acceptance conditions if
# degeneralization or simulation is requested: keeping those that # degeneralization or simulation is requested: keeping those that
# lead to accepting states usually helps. # lead to accepting states usually helps.
automaton = spot.scc_filter(automaton, not (degen or direct_simul)) automaton = spot.scc_filter(automaton, not (degen
or direct_simul
or reverse_simul
or iterated_simul))
issba = False issba = False
if wdba_minimize: if wdba_minimize: