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
10189b2d
Commit
10189b2d
authored
Sep 17, 2012
by
Alexandre Duret-Lutz
Browse files
* src/tgbaalgos/postproc.cc: Misplaced call to scc_filter().
parent
675fc0bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tgbaalgos/postproc.cc
View file @
10189b2d
...
...
@@ -99,13 +99,6 @@ namespace spot
{
delete
wdba
;
wdba
=
0
;
if
(
type_
==
TGBA
&&
level_
==
High
)
{
const
tgba
*
s
=
scc_filter
(
sim
,
true
);
delete
sim
;
sim
=
s
;
}
}
else
{
...
...
@@ -114,6 +107,13 @@ namespace spot
}
}
if
(
sim
&&
type_
==
TGBA
&&
level_
==
High
)
{
const
tgba
*
s
=
scc_filter
(
sim
,
true
);
delete
sim
;
return
s
;
}
return
wdba
?
wdba
:
sim
;
}
}
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