* src/ltlvisit/syntimpl.cc: Fix a typo.
This commit is contained in:
parent
5a39d40b2c
commit
64d5de8fe1
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
2005-05-16 Denis Poitrenaud <dp@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/ltlvisit/syntimpl.cc: Fix a typo.
|
||||||
|
|
||||||
2005-05-13 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2005-05-13 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
* src/ltlvisit/syntimpl.cc: Fix detection of purely eventual formulae.
|
* src/ltlvisit/syntimpl.cc: Fix detection of purely eventual formulae.
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@ namespace spot
|
||||||
eventual = recurse_ev(f1) && recurse_ev(f2);
|
eventual = recurse_ev(f1) && recurse_ev(f2);
|
||||||
return;
|
return;
|
||||||
case binop::U:
|
case binop::U:
|
||||||
universal = recurse_un(f1) & recurse_un(f2);
|
universal = recurse_un(f1) && recurse_un(f2);
|
||||||
if ((f1 == constant::true_instance())
|
if ((f1 == constant::true_instance())
|
||||||
// Both operand must be purely eventual, unlike in
|
// Both operand must be purely eventual, unlike in
|
||||||
// the proceedings of Concur'00. (The revision of
|
// the proceedings of Concur'00. (The revision of
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue