* spot/twaalgos/sccinfo.cc (scc_info::split_on_sets): Honor filter.

This commit is contained in:
Alexandre Duret-Lutz 2019-04-11 11:49:15 +02:00
parent 948f99bc4e
commit f7e3d58846

View file

@ -722,19 +722,20 @@ namespace spot
unsigned dst) unsigned dst)
{ {
cur[src] = seen[src] = true; cur[src] = seen[src] = true;
// if (filter_) if (filter_)
// { {
// twa_graph::edge_storage_t e; twa_graph::edge_storage_t e;
// e.cond = cond; e.cond = cond;
// e.src = src; e.acc = m;
// e.dst = dst; e.src = src;
// if (filter_(e, dst, filter_data_) e.dst = dst;
// != edge_filter_choice::keep) if (filter_(e, dst, filter_data_)
// { != edge_filter_choice::keep)
// cond = bddfalse; {
// return; cond = bddfalse;
// } return;
// } }
}
if (scc_of(dst) != scc if (scc_of(dst) != scc
|| (m & sets) || (m & sets)
|| (seen[dst] && !cur[dst])) || (seen[dst] && !cur[dst]))