* src/tgba/tgbabddcoredata.hh (tgba_bdd_core_data::nownext_set):

New attribute.
* tgba/tgbabddcoredata.cc, tgba/tgbabddtranslatefactory.cc:
Handle nownext_set.
* src/tgba/succiterconcrete.cc
(tgba_succ_iterator_concrete::next): Use nownext_set to simplify.
This commit is contained in:
Alexandre Duret-Lutz 2003-07-02 14:19:04 +00:00
parent 2ed074750d
commit 2ea7cbe0f5
5 changed files with 18 additions and 11 deletions

View file

@ -65,8 +65,8 @@ namespace spot
bdd now_set;
/// The conjunction of all Next variables, in their positive form.
bdd next_set;
/// The conjunction of all Now variables, in their negated form.
bdd negnow_set;
/// The conjunction of all Now and Next variables, in their positive form.
bdd nownext_set;
/// \brief The (positive) conjunction of all variables which are
/// not Now variables.
bdd notnow_set;