slights documentation changes around direct simulation
* src/tgbaalgos/simulation.hh: Mention the fact that this is a "direct" simulation. * wrap/python/ajax/ltl2tgba.html: Likewise, and change the key to "ds". * wrap/python/ajax/protocol.txt, wrap/python/ajax/spot.in: Adjust.
This commit is contained in:
parent
cdd576458c
commit
7ba4ab7931
4 changed files with 15 additions and 16 deletions
|
|
@ -411,14 +411,14 @@ if output_type == 'm':
|
|||
# Automaton simplifications
|
||||
prune_scc = False
|
||||
wdba_minimize = False
|
||||
simul_minimize = False
|
||||
direct_simul = False
|
||||
for s in form.getlist('as'):
|
||||
if s == 'ps':
|
||||
prune_scc = True
|
||||
elif s == 'wd':
|
||||
wdba_minimize = True
|
||||
elif s == 'rs':
|
||||
simul_minimize = True
|
||||
elif s == 'ds':
|
||||
direct_simul = True
|
||||
|
||||
if output_type == 'a':
|
||||
buchi_type = form.getfirst('af', 't')
|
||||
|
|
@ -450,9 +450,9 @@ if wdba_minimize:
|
|||
minimized = 0
|
||||
degen = False # No need to degeneralize anymore
|
||||
issba = True
|
||||
simul_minimize = False # No need to simulate anymore
|
||||
direct_simul = False # No need to simulate anymore
|
||||
|
||||
if simul_minimize:
|
||||
if direct_simul:
|
||||
automaton = spot.simulation(automaton)
|
||||
|
||||
if degen or neverclaim:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue