sccinfo: Fix bug in states_on_acc_cycle_of_rec()
* spot/twaalgos/sccinfo.cc: Here.
This commit is contained in:
parent
1a0fa3b722
commit
2c059a1099
1 changed files with 1 additions and 1 deletions
|
|
@ -584,7 +584,7 @@ namespace spot
|
||||||
for (unsigned i = 0; i < orig_sts->size(); ++i)
|
for (unsigned i = 0; i < orig_sts->size(); ++i)
|
||||||
(*orig_sts)[i] = old[(*orig_sts)[i]];
|
(*orig_sts)[i] = old[(*orig_sts)[i]];
|
||||||
|
|
||||||
scc_info si_tmp(aut);
|
scc_info si_tmp(aut, scc_info_options::TRACK_STATES);
|
||||||
unsigned scccount_tmp = si_tmp.scc_count();
|
unsigned scccount_tmp = si_tmp.scc_count();
|
||||||
for (unsigned scc_tmp = 0; scc_tmp < scccount_tmp; ++scc_tmp)
|
for (unsigned scc_tmp = 0; scc_tmp < scccount_tmp; ++scc_tmp)
|
||||||
si_tmp.states_on_acc_cycle_of_rec(scc_tmp, all_fin, all_inf,
|
si_tmp.states_on_acc_cycle_of_rec(scc_tmp, all_fin, all_inf,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue