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
2377523c
Commit
2377523c
authored
Jan 11, 2015
by
Alexandre Duret-Lutz
Browse files
powerset: simplify an implication check
* src/tgbaalgos/powerset.cc: Use bdd_implies.
parent
6f7f9ef8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tgbaalgos/powerset.cc
View file @
2377523c
...
...
@@ -81,8 +81,8 @@ namespace spot
// Construct the set of all states reachable via COND.
power_state
dest
;
for
(
auto
s
:
src
)
for
(
auto
si
:
aut
->
out
(
s
))
if
((
cond
>>
si
.
cond
)
==
bddtrue
)
for
(
auto
&
si
:
aut
->
out
(
s
))
if
(
bdd_implies
(
cond
,
si
.
cond
))
dest
.
insert
(
si
.
dst
);
if
(
dest
.
empty
())
continue
;
...
...
Alexandre Duret-Lutz
@adl
mentioned in issue
#26
·
Jan 12, 2015
mentioned in issue
#26
mentioned in issue #26
Toggle commit list
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