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
f4ecb342
Commit
f4ecb342
authored
Jun 07, 2011
by
Alexandre Duret-Lutz
Browse files
* src/ltltest/genltl.cc (X_n): Fix assertion.
parent
0b11fc2e
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
f4ecb342
2011-06-07 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/ltltest/genltl.cc (X_n): Fix assertion.
2011-06-06 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/ltlvisit/dotty.cc (dotty_visitor): Reorder attributes.
...
...
src/ltltest/genltl.cc
View file @
f4ecb342
...
...
@@ -420,7 +420,7 @@ formula* fair_response(std::string p, std::string q, std::string r, int n)
// Builds X(X(...X(p))) with n occurrences of X.
formula
*
X_n
(
formula
*
p
,
int
n
)
{
assert
(
n
>
0
);
assert
(
n
>
=
0
);
formula
*
res
=
p
;
while
(
n
--
)
res
=
X_
(
res
);
...
...
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