Skip to content
GitLab
Menu
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
d415a238
Commit
d415a238
authored
Oct 22, 2013
by
Alexandre Duret-Lutz
Browse files
* src/bin/ltl2tgta.cc: Simplify using spot::translator().
parent
9dd59f19
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/ltl2tgta.cc
View file @
d415a238
...
...
@@ -36,7 +36,7 @@
#include "ltlvisit/simplify.hh"
#include "tgbaalgos/dotty.hh"
#include "tgbaalgos/ltl2tgba_fm.hh"
#include "tgbaalgos/
postproc
.hh"
#include "tgbaalgos/
translate
.hh"
#include "tgba/bddprint.hh"
#include "taalgos/tgba2ta.hh"
...
...
@@ -159,12 +159,10 @@ namespace
class
trans_processor
:
public
job_processor
{
public:
spot
::
ltl
::
ltl_simplifier
&
simpl
;
spot
::
postprocessor
&
post
;
spot
::
translator
&
trans
;
trans_processor
(
spot
::
ltl
::
ltl_simplifier
&
simpl
,
spot
::
postprocessor
&
post
)
:
simpl
(
simpl
),
post
(
post
)
trans_processor
(
spot
::
translator
&
trans
)
:
trans
(
trans
)
{
}
...
...
@@ -172,12 +170,7 @@ namespace
process_formula
(
const
spot
::
ltl
::
formula
*
f
,
const
char
*
filename
=
0
,
int
linenum
=
0
)
{
const
spot
::
ltl
::
formula
*
res
=
simpl
.
simplify
(
f
);
f
->
destroy
();
f
=
res
;
// This helps ltl_to_tgba_fm() to order BDD variables in a more
// natural way (improving the degeneralization).
simpl
.
clear_as_bdd_cache
();
const
spot
::
tgba
*
aut
=
trans
.
run
(
&
f
);
// This should not happen, because the parser we use can only
// read PSL/LTL formula, but since our ltl::formula* type can
...
...
@@ -191,10 +184,6 @@ namespace
s
.
c_str
());
}
bool
exprop
=
level
==
spot
::
postprocessor
::
High
;
const
spot
::
tgba
*
aut
=
ltl_to_tgba_fm
(
f
,
simpl
.
get_dict
(),
exprop
);
aut
=
post
.
run
(
aut
,
f
);
if
(
utf8
)
{
spot
::
tgba
*
a
=
const_cast
<
spot
::
tgba
*>
(
aut
);
...
...
@@ -264,14 +253,12 @@ main(int argc, char** argv)
error
(
2
,
0
,
"No formula to translate? Run '%s --help' for usage."
,
program_name
);
spot
::
ltl
::
ltl_simplifier
simpl
(
simplifier_options
());
spot
::
postprocessor
postproc
(
&
extra_options
);
postproc
.
set_pref
(
pref
|
comp
);
postproc
.
set_type
(
type
);
postproc
.
set_level
(
level
);
spot
::
translator
trans
(
&
extra_options
);
trans
.
set_pref
(
pref
|
comp
);
trans
.
set_type
(
type
);
trans
.
set_level
(
level
);
trans_processor
processor
(
simpl
,
postproc
);
trans_processor
processor
(
trans
);
if
(
processor
.
run
())
return
2
;
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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