* src/tgbatest/ltl2tgba.cc (-rs): New option for reduce_size_striclty.

This commit is contained in:
Alexandre Duret-Lutz 2012-05-02 20:23:58 +02:00
parent 42963b99c8
commit 2c3df109e1

View file

@ -178,7 +178,8 @@ syntax(char* prog)
<< " -r6 reduce formula using tau03+" << std::endl
<< " -r7 reduce formula using tau03+ and -r4" << std::endl
<< " -rd display the reduced formula" << std::endl
<< std::endl
<< " -rL disable basic rewritings producing larger formulas"
<< std::endl << std::endl
<< "Automaton degeneralization (after translation):"
<< std::endl
@ -303,7 +304,8 @@ main(int argc, char** argv)
bool read_neverclaim = false;
bool scc_filter = false;
bool simpltl = false;
spot::ltl::ltl_simplifier_options redopt(false, false, false, false, false);
spot::ltl::ltl_simplifier_options redopt(false, false, false, false,
false, false, false);
bool scc_filter_all = false;
bool symbolic_scc_pruning = false;
bool display_reduced_form = false;
@ -626,6 +628,12 @@ main(int argc, char** argv)
{
opt_minimize = true;
}
else if (!strcmp(argv[formula_index], "-rs"))
{
simpltl = true;
redopt.reduce_basics = true;
redopt.reduce_size_strictly = true;
}
else if (!strcmp(argv[formula_index], "-M"))
{
opt_monitor = true;