scc_info: add ways to speedup scc_info
* spot/twaalgos/sccinfo.hh, spot/twaalgos/sccinfo.cc: Add an optional argument to abort on accepting SCC, to not keep track of SCC states, and some one_accepting_scc() method. * NEWS: Mention it. * bin/ltlcross.cc, spot/twaalgos/alternation.cc, spot/twaalgos/cobuchi.cc, spot/twaalgos/degen.cc, spot/twaalgos/determinize.cc, spot/twaalgos/dtbasat.cc, spot/twaalgos/dtwasat.cc, spot/twaalgos/isunamb.cc, spot/twaalgos/powerset.cc, spot/twaalgos/remfin.cc, spot/twaalgos/sbacc.cc, spot/twaalgos/sccfilter.cc, spot/twaalgos/totgba.cc: Adjust arguments passed to scc_info.
This commit is contained in:
parent
11704d31eb
commit
9ca5b8c2f1
16 changed files with 257 additions and 112 deletions
|
|
@ -310,7 +310,7 @@ namespace spot
|
|||
dnf_to_streett_converter(const const_twa_graph_ptr& in,
|
||||
const acc_cond::acc_code& code)
|
||||
: in_(in),
|
||||
si_(scc_info(in)),
|
||||
si_(scc_info(in, scc_info_options::TRACK_STATES)),
|
||||
nb_scc_(si_.scc_count()),
|
||||
max_set_in_(code.used_sets().max_set()),
|
||||
state_based_(in->prop_state_acc() == true),
|
||||
|
|
@ -555,7 +555,7 @@ namespace spot
|
|||
inf_to_finpairs[mark] |= pair.fin;
|
||||
}
|
||||
|
||||
scc_info si(in);
|
||||
scc_info si(in, scc_info_options::NONE);
|
||||
|
||||
// Compute the acceptance sets present in each SCC
|
||||
unsigned nscc = si.scc_count();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue