After this changes, degeneralized automata are 40% smaller

in LBTT's statistics.

* src/tgba/tgbatba.cc (state_tba_proxy): Store an iterator,
pointing somewhere into the acceptance conditions list, instead of
an acceptance condition.
(state_tba_proxy::acceptance_iterator): New method.
(tgba_tba_proxy_succ_iterator): Adjust to use iterators too.
(tgba_tba_proxy_succ_iterator::current_state): If the current
transition is in several consecutive acceptance steps after the
expected one, advance many steps at once.
(tgba_tba_proxy::tgba_tba_proxy): Build the acceptance cycle
as a list, not a map.
(tgba_tba_proxy::get_init_state, tgba_tba_proxy::succ_iter):
Adjust.
* src/tgba/tgbatba.hh (tgba_tba_proxy::acc_cycle_): Declare as
a list, not a map.
This commit is contained in:
Alexandre Duret-Lutz 2004-01-29 13:02:55 +00:00
parent bdbaa8356c
commit 440029c1b5
3 changed files with 79 additions and 46 deletions

View file

@ -1,3 +1,23 @@
2004-01-29 Alexandre Duret-Lutz <adl@src.lip6.fr>
After this changes, degeneralized automata are 40% smaller
in LBTT's statistics.
* src/tgba/tgbatba.cc (state_tba_proxy): Store an iterator,
pointing somewhere into the acceptance conditions list, instead of
an acceptance condition.
(state_tba_proxy::acceptance_iterator): New method.
(tgba_tba_proxy_succ_iterator): Adjust to use iterators too.
(tgba_tba_proxy_succ_iterator::current_state): If the current
transition is in several consecutive acceptance steps after the
expected one, advance many steps at once.
(tgba_tba_proxy::tgba_tba_proxy): Build the acceptance cycle
as a list, not a map.
(tgba_tba_proxy::get_init_state, tgba_tba_proxy::succ_iter):
Adjust.
* src/tgba/tgbatba.hh (tgba_tba_proxy::acc_cycle_): Declare as
a list, not a map.
2004-01-26 Alexandre Duret-Lutz <adl@src.lip6.fr> 2004-01-26 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbaalgos/magic.cc (magic_search::~magic_search): Release * src/tgbaalgos/magic.cc (magic_search::~magic_search): Release

View file

@ -1,4 +1,4 @@
// Copyright (C) 2003 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
// et Marie Curie. // et Marie Curie.
// //
@ -30,12 +30,13 @@ namespace spot
/// \brief A state for spot::tgba_tba_proxy. /// \brief A state for spot::tgba_tba_proxy.
/// ///
/// This state is in fact a pair of state: the state from the tgba /// This state is in fact a pair of state: the state from the tgba
/// automaton, and the "counter" (we use the acceptance set /// automaton, and a state of the "counter" (we use a pointer
/// BDD variable instead of an integer counter). /// to the position in the cycle_acc_ list).
class state_tba_proxy : public state class state_tba_proxy : public state
{ {
typedef tgba_tba_proxy::cycle_list::const_iterator iterator;
public: public:
state_tba_proxy(state* s, bdd acc) state_tba_proxy(state* s, iterator acc)
: s_(s), acc_(acc) : s_(s), acc_(acc)
{ {
} }
@ -44,7 +45,7 @@ namespace spot
state_tba_proxy(const state_tba_proxy& o) state_tba_proxy(const state_tba_proxy& o)
: state(), : state(),
s_(o.real_state()->clone()), s_(o.real_state()->clone()),
acc_(o.acceptance_cond()) acc_(o.acceptance_iterator())
{ {
} }
@ -62,6 +63,12 @@ namespace spot
bdd bdd
acceptance_cond() const acceptance_cond() const
{
return *acc_;
}
iterator
acceptance_iterator() const
{ {
return acc_; return acc_;
} }
@ -74,15 +81,15 @@ namespace spot
int res = s_->compare(o->real_state()); int res = s_->compare(o->real_state());
if (res != 0) if (res != 0)
return res; return res;
return acc_.id() - o->acceptance_cond().id(); return acc_->id() - o->acceptance_cond().id();
} }
virtual size_t virtual size_t
hash() const hash() const
{ {
// We expect to have many more state than acceptance conditions. // We expect to have many more states than acceptance conditions.
// Hence we keep only 8 bits for acceptance conditions. // Hence we keep only 8 bits for acceptance conditions.
return (s_->hash() << 8) + (acc_.id() & 0xFF); return (s_->hash() << 8) + (acc_->id() & 0xFF);
} }
virtual virtual
@ -93,18 +100,20 @@ namespace spot
private: private:
state* s_; state* s_;
bdd acc_; iterator acc_;
}; };
/// \brief Iterate over the successors of tgba_tba_proxy computed on the fly. /// \brief Iterate over the successors of tgba_tba_proxy computed on the fly.
class tgba_tba_proxy_succ_iterator: public tgba_succ_iterator class tgba_tba_proxy_succ_iterator: public tgba_succ_iterator
{ {
typedef tgba_tba_proxy::cycle_list list;
typedef tgba_tba_proxy::cycle_list::const_iterator iterator;
public: public:
tgba_tba_proxy_succ_iterator(tgba_succ_iterator* it, tgba_tba_proxy_succ_iterator(tgba_succ_iterator* it,
bdd acc, bdd next_acc, iterator expected, iterator end,
bdd the_acceptance_cond) bdd the_acceptance_cond)
: it_(it), acc_(acc), next_acc_(next_acc), : it_(it), expected_(expected), end_(end),
the_acceptance_cond_(the_acceptance_cond) the_acceptance_cond_(the_acceptance_cond)
{ {
} }
@ -140,16 +149,27 @@ namespace spot
state_tba_proxy* state_tba_proxy*
current_state() const current_state() const
{ {
state* s = it_->current_state(); // A transition in the *EXPECTED acceptance set should be directed
bdd acc; // to the next acceptance set. If the current transition is also
// Transition in the ACC_ acceptance set should be directed // in the next acceptance set, then go the one after, etc.
// to the NEXT_ACC_ acceptance set. //
if (acc_ == bddtrue // Jérôme Leroux's PhD thesis has a nice explanation of how it
|| (acc_ & it_->current_acceptance_conditions()) == acc_) // works, chapter 6.
acc = next_acc_; // @PhDThesis{ leroux.03.phd,
else // author = {J{\'e}r{\^o}me Leroux},
acc = acc_; // title = {Algorithmique de la v{\'e}rification des syst{\`e}mes
return new state_tba_proxy(s, acc); // {\`a} compteurs. Approximation et acc{\'e}l{\'e}ration.
// Impl{\'e}mentation de l'outil {\sc Fast}},
// school = {{\'E}cole Normale Sup{\'e}rieure de Cachan},
// year = {2003},
// month = {December}
// }
//
iterator next = expected_;
bdd acc = it_->current_acceptance_conditions();
while ((acc & *next) == *next && next != end_)
++next;
return new state_tba_proxy(it_->current_state(), next);
} }
bdd bdd
@ -166,9 +186,9 @@ namespace spot
protected: protected:
tgba_succ_iterator* it_; tgba_succ_iterator* it_;
bdd acc_; const iterator expected_;
bdd next_acc_; const iterator end_;
bdd the_acceptance_cond_; const bdd the_acceptance_cond_;
}; };
@ -185,20 +205,14 @@ namespace spot
// Now build the "cycle" of acceptance conditions. // Now build the "cycle" of acceptance conditions.
bdd last = bdd_satone(all); acc_cycle_.push_front(bddtrue);
all -= last;
acc_cycle_[bddtrue] = last;
while (all != bddfalse) while (all != bddfalse)
{ {
bdd next = bdd_satone(all); bdd next = bdd_satone(all);
all -= next; all -= next;
acc_cycle_[last] = next; acc_cycle_.push_front(next);
last = next;
} }
acc_cycle_[last] = bddtrue;
} }
tgba_tba_proxy::~tgba_tba_proxy() tgba_tba_proxy::~tgba_tba_proxy()
@ -209,9 +223,7 @@ namespace spot
state* state*
tgba_tba_proxy::get_init_state() const tgba_tba_proxy::get_init_state() const
{ {
cycle_map::const_iterator i = acc_cycle_.find(bddtrue); return new state_tba_proxy(a_->get_init_state(), acc_cycle_.begin());
assert(i != acc_cycle_.end());
return new state_tba_proxy(a_->get_init_state(), i->second);
} }
tgba_succ_iterator* tgba_succ_iterator*
@ -225,13 +237,14 @@ namespace spot
tgba_succ_iterator* it = a_->succ_iter(s->real_state(), tgba_succ_iterator* it = a_->succ_iter(s->real_state(),
global_state, global_automaton); global_state, global_automaton);
bdd acc = s->acceptance_cond();
cycle_map::const_iterator i = acc_cycle_.find(acc); cycle_list::const_iterator j = s->acceptance_iterator();
assert(i != acc_cycle_.end()); cycle_list::const_iterator i = j++;
return if (j == acc_cycle_.end())
new tgba_tba_proxy_succ_iterator(it, acc, i->second, return new tgba_tba_proxy_succ_iterator(it, acc_cycle_.begin(),
(acc == bddtrue) acc_cycle_.end(),
? the_acceptance_cond_ : bddfalse); the_acceptance_cond_);
return new tgba_tba_proxy_succ_iterator(it, i, acc_cycle_.end(), bddfalse);
} }
bdd_dict* bdd_dict*

View file

@ -1,4 +1,4 @@
// Copyright (C) 2003 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
// et Marie Curie. // et Marie Curie.
// //
@ -22,7 +22,7 @@
#ifndef SPOT_TGBA_TGBATBA_HH #ifndef SPOT_TGBA_TGBATBA_HH
# define SPOT_TGBA_TGBATBA_HH # define SPOT_TGBA_TGBATBA_HH
#include <map> #include <list>
#include "tgba.hh" #include "tgba.hh"
#include "misc/bddlt.hh" #include "misc/bddlt.hh"
@ -70,14 +70,14 @@ namespace spot
bool state_is_accepting(const state* state) const; bool state_is_accepting(const state* state) const;
typedef std::list<bdd> cycle_list;
protected: protected:
virtual bdd compute_support_conditions(const state* state) const; virtual bdd compute_support_conditions(const state* state) const;
virtual bdd compute_support_variables(const state* state) const; virtual bdd compute_support_variables(const state* state) const;
private: private:
const tgba* a_; const tgba* a_;
typedef std::map<bdd, bdd, bdd_less_than> cycle_map; cycle_list acc_cycle_;
cycle_map acc_cycle_;
bdd the_acceptance_cond_; bdd the_acceptance_cond_;
// Disallow copy. // Disallow copy.
tgba_tba_proxy(const tgba_tba_proxy&); tgba_tba_proxy(const tgba_tba_proxy&);