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
e1d4522c
Commit
e1d4522c
authored
Nov 18, 2014
by
Alexandre Duret-Lutz
Browse files
hoa: fix output
* src/tgbaalgos/hoaf.cc: Do not initialize acc_cond::mark_t with -1U.
parent
45e9b96b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tgbaalgos/hoaf.cc
View file @
e1d4522c
...
...
@@ -107,7 +107,8 @@ namespace spot
{
auto
src
=
todo
.
front
();
todo
.
pop_front
();
acc_cond
::
mark_t
prev
=
-
1U
;
bool
notfirst
=
false
;
acc_cond
::
mark_t
prev
=
0U
;
bool
st_acc
=
true
;
bdd
sum
=
bddfalse
;
bdd
available
=
bddtrue
;
...
...
@@ -137,10 +138,15 @@ namespace spot
if
(
st_acc
)
{
acc_cond
::
mark_t
acc
=
i
->
current_acceptance_conditions
();
if
(
prev
!=
-
1U
&&
prev
!=
acc
)
st_acc
=
false
;
if
(
notfirst
&&
prev
!=
acc
)
{
st_acc
=
false
;
}
else
prev
=
acc
;
{
notfirst
=
true
;
prev
=
acc
;
}
}
}
if
(
is_complete
)
...
...
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