Correctly handle ltl2tgba's option -rL.

* src/tgbatest/ltl2tgba.cc: Fix mismatch between the help text,
documenting -rL, and the handling code, expecting -rs.
This commit is contained in:
Alexandre Duret-Lutz 2012-05-19 00:11:13 +02:00
parent 8c454f9ddf
commit babc024097
2 changed files with 6 additions and 5 deletions

View file

@ -623,16 +623,16 @@ main(int argc, char** argv)
{
reduction_dir_sim = true;
}
else if (!strcmp(argv[formula_index], "-Rm"))
{
opt_minimize = true;
}
else if (!strcmp(argv[formula_index], "-rs"))
else if (!strcmp(argv[formula_index], "-rL"))
{
simpltl = true;
redopt.reduce_basics = true;
redopt.reduce_size_strictly = true;
}
else if (!strcmp(argv[formula_index], "-Rm"))
{
opt_minimize = true;
}
else if (!strcmp(argv[formula_index], "-M"))
{
opt_monitor = true;