Change the simulation option from -RSD to -RDS and document it.
* src/tgbatest/ltl2tgba.cc: Here. * src/tgbatest/spotlbtt.test: Adjust.
This commit is contained in:
parent
7e5875845a
commit
324802c04f
2 changed files with 12 additions and 10 deletions
|
|
@ -201,7 +201,9 @@ syntax(char* prog)
|
|||
<< " "
|
||||
<< "(prefer -R3 over -R3f if you degeneralize with -D, -DS, or -N)"
|
||||
<< std::endl
|
||||
<< " -Rm attempt to minimize the automata" << std::endl
|
||||
<< " -RDS minimize the automaton with direct simulation"
|
||||
<< std::endl
|
||||
<< " -Rm attempt to WDBA-minimize the automata" << std::endl
|
||||
<< std::endl
|
||||
|
||||
<< "Automaton conversion:" << std::endl
|
||||
|
|
@ -614,7 +616,7 @@ main(int argc, char** argv)
|
|||
|| !strcmp(argv[formula_index], "-R2t"))
|
||||
{
|
||||
// For backward compatibility, make all these options
|
||||
// equal to -RSD.
|
||||
// equal to -RDS.
|
||||
reduction_dir_sim = true;
|
||||
}
|
||||
else if (!strcmp(argv[formula_index], "-R3"))
|
||||
|
|
@ -634,14 +636,14 @@ main(int argc, char** argv)
|
|||
{
|
||||
display_reduce_form = true;
|
||||
}
|
||||
else if (!strcmp(argv[formula_index], "-RDS"))
|
||||
{
|
||||
reduction_dir_sim = true;
|
||||
}
|
||||
else if (!strcmp(argv[formula_index], "-Rm"))
|
||||
{
|
||||
opt_minimize = true;
|
||||
}
|
||||
else if (!strcmp(argv[formula_index], "-RSD"))
|
||||
{
|
||||
reduction_dir_sim = true;
|
||||
}
|
||||
else if (!strcmp(argv[formula_index], "-M"))
|
||||
{
|
||||
opt_monitor = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue