* src/bin/ltlfilt.cc (--psl): Remove this option.
This commit is contained in:
parent
b5da11ed24
commit
b5b3cd9d0c
1 changed files with 1 additions and 6 deletions
|
|
@ -69,7 +69,6 @@ Exit status:\n\
|
|||
#define OPT_DROP_ERRORS 3
|
||||
#define OPT_NNF 4
|
||||
#define OPT_LTL 5
|
||||
#define OPT_PSL 6
|
||||
#define OPT_NOX 7
|
||||
#define OPT_BOOLEAN 8
|
||||
#define OPT_EVENTUAL 9
|
||||
|
|
@ -115,8 +114,7 @@ static const argp_option options[] =
|
|||
/**************************************************/
|
||||
{ 0, 0, 0, 0,
|
||||
"Filtering options (matching is done after transformation):", 5 },
|
||||
{ "ltl", OPT_LTL, 0, 0, "match LTL formulas", 0 },
|
||||
{ "psl", OPT_PSL, 0, 0, "match PSL formulas", 0 },
|
||||
{ "ltl", OPT_LTL, 0, 0, "match only LTL formulas (no PSL operator)", 0 },
|
||||
{ "nox", OPT_NOX, 0, 0, "match X-free formulas", 0 },
|
||||
{ "boolean", OPT_BOOLEAN, 0, 0, "match Boolean formulas", 0 },
|
||||
{ "eventual", OPT_EVENTUAL, 0, 0, "match pure eventualities", 0 },
|
||||
|
|
@ -300,9 +298,6 @@ parse_opt(int key, char* arg, struct argp_state*)
|
|||
case OPT_OBLIGATION:
|
||||
obligation = true;
|
||||
break;
|
||||
case OPT_PSL:
|
||||
psl = true;
|
||||
break;
|
||||
case OPT_RELABEL:
|
||||
relabeling = true;
|
||||
if (!arg || !strncasecmp(arg, "abc", 6))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue