Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
2c3df109
Commit
2c3df109
authored
May 02, 2012
by
Alexandre Duret-Lutz
Browse files
* src/tgbatest/ltl2tgba.cc (-rs): New option for reduce_size_striclty.
parent
42963b99
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tgbatest/ltl2tgba.cc
View file @
2c3df109
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment