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
7fd9459a
Commit
7fd9459a
authored
Apr 05, 2004
by
Alexandre Duret-Lutz
Browse files
* src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle):
Do not visit a state more than once. Report from Soheib Baarir.
parent
fa6ac39c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
7fd9459a
2004-04-05 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/emptinesscheck.cc (emptiness_check::complete_cycle):
Do not visit a state more than once. Report from Soheib Baarir.
2004-03-25 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/ltl2tgba_fm.cc (translate_dict): Reuse Acc and Var
...
...
src/tgbaalgos/emptinesscheck.cc
View file @
7fd9459a
...
...
@@ -616,8 +616,8 @@ namespace spot
{
const
state
*
dest
=
i
->
current_state
();
// Do not escape this SCC.
if
(
!
scc
.
has_state
(
dest
))
// Do not escape this SCC
or visit a state already visited
.
if
(
!
scc
.
has_state
(
dest
)
||
father
.
find
(
dest
)
!=
father
.
end
()
)
{
delete
dest
;
continue
;
...
...
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