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
ff3c02f5
Commit
ff3c02f5
authored
Oct 23, 2011
by
Alexandre Duret-Lutz
Browse files
* src/tgba/tgbasafracomplement.cc: Fix two asserts.
parent
73d9f65d
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
ff3c02f5
2011-10-23 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/tgba/tgbasafracomplement.cc: Fix two asserts.
2011-10-23 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Improve the print_safra_automaton output.
...
...
src/tgba/tgbasafracomplement.cc
View file @
ff3c02f5
...
...
@@ -1129,7 +1129,7 @@ namespace spot
tgba_safra_complement
::
tgba_safra_complement
(
const
tgba
*
a
)
:
automaton_
(
a
),
safra_
(
safra_determinisation
::
create_safra_automaton
(
a
))
{
assert
(
safra_
||
"safra construction fails"
);
assert
(
safra_
||
!
"safra construction fails"
);
// We will use one acceptance condition for this automata.
// Let's call it Acc[True].
...
...
@@ -1292,7 +1292,7 @@ namespace spot
return
new
tgba_safra_complement_succ_iterator
(
succ_list
,
condition
);
}
assert
(
"Safra automaton does not find this node"
);
assert
(
!
"Safra automaton does not find this node"
);
return
0
;
}
...
...
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