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
|
|
@ -333,7 +333,8 @@ namespace spot
|
|||
|
||||
public:
|
||||
alternation_remover(const const_twa_graph_ptr& aut)
|
||||
: aut_(aut), si_(aut), class_of_(si_.scc_count(), scc_class::accept)
|
||||
: aut_(aut), si_(aut, scc_info_options::TRACK_STATES),
|
||||
class_of_(si_.scc_count(), scc_class::accept)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue