Correct tgba_explicit::compute_support_conditions.

* src/tgba/tgbaexplicit.cc (tgba_explicit::compute_support_conditions):
Fix logic.  This function has always been returning bddtrue instead
of the actual computed value...
This commit is contained in:
Alexandre Duret-Lutz 2011-02-14 21:09:04 +01:00
parent 079747da23
commit 94d1c57ed4
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2011-02-14 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Correct tgba_explicit::compute_support_conditions.
* src/tgba/tgbaexplicit.cc (tgba_explicit::compute_support_conditions):
Fix logic. This function has always been returning bddtrue instead
of the actual computed value...
2011-02-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Enable VERBOSE logs for nips, greatspn, and python tests.

View file

@ -1,4 +1,4 @@
// Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement
// Copyright (C) 2009, 2010, 2011 Laboratoire de Recherche et Développement
// de l'Epita (LRDE).
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
@ -242,7 +242,7 @@ namespace spot
assert(s);
const state* st = s->get_state();
bdd res = bddtrue;
bdd res = bddfalse;
tgba_explicit::state::const_iterator i;
for (i = st->begin(); i != st->end(); ++i)
res |= (*i)->condition;