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
ab02ee60
Commit
ab02ee60
authored
Nov 23, 2009
by
Alexandre Duret-Lutz
Browse files
* src/tgbaalgos/sccfilter.cc (create_transition): Do not clone
the same node twice when dealing with loops.
parent
9a14d28a
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
ab02ee60
2009-11-23 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgbaalgos/sccfilter.cc (create_transition): Do not clone
the same node twice when dealing with loops.
2009-11-23 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Use bdd_satprefix() to speedup minato on BDDs that are almost cubes.
...
...
src/tgbaalgos/sccfilter.cc
View file @
ab02ee60
...
...
@@ -52,7 +52,7 @@ namespace spot
const
ltl
::
formula
*
out_f
=
a
->
get_label
(
out_s
);
if
(
!
out_aut
->
has_state
(
in_f
))
in_f
->
clone
();
if
(
!
out_aut
->
has_state
(
out_f
))
if
(
(
in_f
!=
out_f
)
&&
!
out_aut
->
has_state
(
out_f
))
out_f
->
clone
();
return
out_aut
->
create_transition
(
in_f
,
out_f
);
}
...
...
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