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:
parent
8c454f9ddf
commit
babc024097
2 changed files with 6 additions and 5 deletions
1
NEWS
1
NEWS
|
|
@ -5,6 +5,7 @@ New in spot 0.9a:
|
|||
for "and" and "or", mistaking And/Or with AndRat/OrRat.
|
||||
- The translation of !{r} was incorrect when this subformula
|
||||
was recurring (e.g. in G!{r}) and r had loops.
|
||||
- Correctly recognize ltl2tgba's option -rL.
|
||||
|
||||
New in spot 0.9 (2012-05-09):
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue