* src/tgbaparse/tgbaparse.yy: Remove a random character.
* src/tgba/formula2bdd.cc: Include cassert.
This commit is contained in:
parent
20289e4e7f
commit
6877f378bd
3 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-11-25 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
|
* src/tgbaparse/tgbaparse.yy: Remove a random character.
|
||||||
|
* src/tgba/formula2bdd.cc: Include cassert.
|
||||||
|
|
||||||
2003-11-24 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2003-11-24 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
Explicit automata can now have arbitrary logic formula on their
|
Explicit automata can now have arbitrary logic formula on their
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||||
// 02111-1307, USA.
|
// 02111-1307, USA.
|
||||||
|
|
||||||
|
#include <cassert>
|
||||||
#include "formula2bdd.hh"
|
#include "formula2bdd.hh"
|
||||||
#include "ltlast/allnodes.hh"
|
#include "ltlast/allnodes.hh"
|
||||||
#include "ltlast/visitor.hh"
|
#include "ltlast/visitor.hh"
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ cond_list:
|
||||||
{
|
{
|
||||||
$$ = new std::list<pair>;
|
$$ = new std::list<pair>;
|
||||||
}
|
}
|
||||||
| cond_list string§
|
| cond_list string
|
||||||
{
|
{
|
||||||
if (*$2 != "")
|
if (*$2 != "")
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue