Fix tracking of SCCs on the search stack

This commit is contained in:
Alexandre Duret-Lutz 2008-12-11 12:56:34 +01:00
parent c44d6277f2
commit b2f7c2d76d
3 changed files with 34 additions and 9 deletions

View file

@ -74,7 +74,9 @@ namespace spot
const tgba* aut_; // Automata to decompose.
typedef std::list<scc> stack_type;
stack_type root_; // Stack of SCC roots.
std::stack<bdd> arc_; // A stack of acceptance conditions
std::stack<bdd> arc_acc_; // A stack of acceptance conditions
// between each of these SCC.
std::stack<bdd> arc_cond_; // A stack of conditions
// between each of these SCC.
typedef Sgi::hash_map<const state*, int,
state_ptr_hash, state_ptr_equal> hash_type;