Use clearer names for three methods of spot::scc_info
scc_info::used_acc() and spot::info::used_acc_of() have been renamed to scc_info::marks() and scc_info::marks_of(). scc_info::acc() has been renamed to (the already existing and redundant) scc_info::acc_sets_of(). Old names have been deprecated. * spot/twaalgos/sccinfo.hh, spot/twaalgos/sccinfo.cc: implement it. * spot/twaalgos/dtwasat.cc, spot/twaalgos/isweakscc.cc, spot/twaalgos/remfin.cc, spot/twaalgos/sccfilter.cc: update names. * NEWS: documentate it.
This commit is contained in:
parent
7eb50bc1f8
commit
bd5c6920b1
7 changed files with 56 additions and 27 deletions
|
|
@ -400,7 +400,7 @@ namespace spot
|
|||
d.is_weak_scc = sm.weak_sccs();
|
||||
unsigned scccount = sm.scc_count();
|
||||
{
|
||||
auto tmp = sm.used_acc();
|
||||
auto tmp = sm.marks();
|
||||
d.scc_marks.reserve(scccount);
|
||||
for (auto& v: tmp)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue