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:
parent
079747da23
commit
94d1c57ed4
2 changed files with 10 additions and 2 deletions
|
|
@ -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>
|
2011-02-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
Enable VERBOSE logs for nips, greatspn, and python tests.
|
Enable VERBOSE logs for nips, greatspn, and python tests.
|
||||||
|
|
|
||||||
|
|
@ -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).
|
// de l'Epita (LRDE).
|
||||||
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||||
|
|
@ -242,7 +242,7 @@ namespace spot
|
||||||
assert(s);
|
assert(s);
|
||||||
const state* st = s->get_state();
|
const state* st = s->get_state();
|
||||||
|
|
||||||
bdd res = bddtrue;
|
bdd res = bddfalse;
|
||||||
tgba_explicit::state::const_iterator i;
|
tgba_explicit::state::const_iterator i;
|
||||||
for (i = st->begin(); i != st->end(); ++i)
|
for (i = st->begin(); i != st->end(); ++i)
|
||||||
res |= (*i)->condition;
|
res |= (*i)->condition;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue