Fix tracking of SCCs on the search stack
This commit is contained in:
parent
c44d6277f2
commit
b2f7c2d76d
3 changed files with 34 additions and 9 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue