Removal suggestions from clang-include-cleaner-17 applied manually. * spot/gen/automata.cc, spot/ltsmin/ltsmin.cc, spot/misc/bitvect.cc, spot/misc/intvcomp.cc, spot/misc/satsolver.cc, spot/misc/tmpfile.cc, spot/priv/trim.cc, spot/priv/weight.cc, spot/ta/taexplicit.cc, spot/ta/tgtaexplicit.cc, spot/ta/tgtaproduct.cc, spot/taalgos/emptinessta.cc, spot/taalgos/minimize.cc, spot/taalgos/reachiter.cc, spot/taalgos/statessetbuilder.cc, spot/taalgos/tgba2ta.cc, spot/tl/apcollect.cc, spot/tl/contain.cc, spot/tl/exclusive.cc, spot/tl/formula.cc, spot/tl/mark.cc, spot/tl/randomltl.cc, spot/tl/relabel.cc, spot/tl/remove_x.cc, spot/twa/acc.cc, spot/twa/bdddict.cc, spot/twa/taatgba.cc, spot/twa/twagraph.cc, spot/twaalgos/aiger.cc, spot/twaalgos/alternation.cc, spot/twaalgos/canonicalize.cc, spot/twaalgos/cobuchi.cc, spot/twaalgos/complement.cc, spot/twaalgos/compsusp.cc, spot/twaalgos/dbranch.cc, spot/twaalgos/degen.cc, spot/twaalgos/determinize.cc, spot/twaalgos/dot.cc, spot/twaalgos/dtbasat.cc, spot/twaalgos/dtwasat.cc, spot/twaalgos/emptiness.cc, spot/twaalgos/forq_contains.cc, spot/twaalgos/game.cc, spot/twaalgos/genem.cc, spot/twaalgos/gv04.cc, spot/twaalgos/hoa.cc, spot/twaalgos/isunamb.cc, spot/twaalgos/isweakscc.cc, spot/twaalgos/lbtt.cc, spot/twaalgos/ltl2tgba_fm.cc, spot/twaalgos/magic.cc, spot/twaalgos/mealy_machine.cc, spot/twaalgos/minimize.cc, spot/twaalgos/neverclaim.cc, spot/twaalgos/parity.cc, spot/twaalgos/powerset.cc, spot/twaalgos/product.cc, spot/twaalgos/randomgraph.cc, spot/twaalgos/randomize.cc, spot/twaalgos/relabel.cc, spot/twaalgos/remfin.cc, spot/twaalgos/remprop.cc, spot/twaalgos/sccinfo.cc, spot/twaalgos/se05.cc, spot/twaalgos/sepsets.cc, spot/twaalgos/simulation.cc, spot/twaalgos/split.cc, spot/twaalgos/strength.cc, spot/twaalgos/stutter.cc, spot/twaalgos/synthesis.cc, spot/twaalgos/tau03.cc, spot/twaalgos/tau03opt.cc, spot/twaalgos/translate.cc, spot/twacube/cube.cc: Remove useless includes.
151 lines
5.1 KiB
C++
151 lines
5.1 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) by the Spot authors, see the AUTHORS file for details.
|
|
//
|
|
// This file is part of Spot, a model checking library.
|
|
//
|
|
// Spot is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
// License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#include "config.h"
|
|
#include <spot/twaalgos/isunamb.hh>
|
|
#include <spot/twaalgos/product.hh>
|
|
#include <spot/twaalgos/sccinfo.hh>
|
|
#include <spot/twaalgos/mask.hh>
|
|
|
|
namespace spot
|
|
{
|
|
// Conceptually, aut is unambiguous if the useful part of aut has
|
|
// the same size as the useful part of aut*aut.
|
|
//
|
|
// However calling scc_info::determine_unknown_acceptance(), which
|
|
// is needed to decide which states are actually useless, is costly.
|
|
// We do it on aut, but we avoid doing it on prod.
|
|
//
|
|
// This optimization, which requires much more code than what
|
|
// we used to have, was motivated by issue #188.
|
|
bool is_unambiguous(const const_twa_graph_ptr& aut)
|
|
{
|
|
if (!aut->is_existential())
|
|
throw std::runtime_error
|
|
("is_unambiguous() does not support alternation");
|
|
|
|
trival u = aut->prop_unambiguous();
|
|
if (u.is_known())
|
|
return u.is_true();
|
|
if (aut->num_edges() == 0)
|
|
return true;
|
|
|
|
scc_info sccmap(aut, scc_info_options::TRACK_SUCCS |
|
|
scc_info_options::TRACK_STATES_IF_FIN_USED);
|
|
sccmap.determine_unknown_acceptance();
|
|
unsigned autsz = aut->num_states();
|
|
std::vector<bool> v;
|
|
v.reserve(autsz);
|
|
bool all_useful = true;
|
|
for (unsigned n = 0; n < autsz; ++n)
|
|
{
|
|
bool useful = sccmap.is_useful_state(n);
|
|
all_useful &= useful;
|
|
v.push_back(useful);
|
|
}
|
|
|
|
// If the input automaton comes from any /decent/ source, it is
|
|
// unlikely that it has some useless states, so do not bother too
|
|
// much optimizing this case.
|
|
if (!all_useful)
|
|
return is_unambiguous(mask_keep_accessible_states
|
|
(aut, v, aut->get_init_state_number()));
|
|
|
|
// Reuse v to remember which states are in an accepting SCC.
|
|
for (unsigned n = 0; n < autsz; ++n)
|
|
v[n] = sccmap.is_accepting_scc(sccmap.scc_of(n));
|
|
|
|
auto prod = product(aut, aut);
|
|
auto sprod =
|
|
prod->get_named_prop<std::vector<std::pair<unsigned,
|
|
unsigned>>>("product-states");
|
|
assert(sprod);
|
|
|
|
// What follow is a way to compute whether an SCC is useless in
|
|
// prod, avoiding scc_info::determine_unknown_acceptance() on the
|
|
// product, because prod may have a large acceptance condition.
|
|
scc_info sccmap_prod(prod);
|
|
unsigned psc = sccmap_prod.scc_count();
|
|
std::vector<bool> useful(psc);
|
|
for (unsigned n = 0; n < psc; ++n)
|
|
{
|
|
// If scc_info could determinate acceptance easily, use it.
|
|
// An accepting SCC is useful.
|
|
bool uf = sccmap_prod.is_accepting_scc(n);
|
|
// If any of the successor is useful, this SCC is useful as
|
|
// well regardless of its acceptance.
|
|
if (!uf)
|
|
for (unsigned j: sccmap_prod.succ(n))
|
|
if (useful[j])
|
|
{
|
|
uf = true;
|
|
break;
|
|
}
|
|
if (uf)
|
|
{
|
|
useful[n] = true;
|
|
continue;
|
|
}
|
|
if (!sccmap_prod.is_rejecting_scc(n))
|
|
{
|
|
// This SCC has no useful successors, but we still do not
|
|
// known if it is accepting.
|
|
//
|
|
// A necessary condition for the SCC to be accepting is that
|
|
// its it the combination of two accepting SCCs. So let's
|
|
// test that first.
|
|
unsigned one_state = sccmap_prod.states_of(n).front();
|
|
bool accepting =
|
|
v[(*sprod)[one_state].first] && v[(*sprod)[one_state].second];
|
|
if (!accepting)
|
|
continue;
|
|
// We can't avoid it any more, we have to check the
|
|
// acceptance of the SCC.
|
|
useful[n] = !sccmap_prod.check_scc_emptiness(n);
|
|
}
|
|
}
|
|
|
|
// Now we just have to count the number of states && edges that
|
|
// belong to the useful part of the automaton.
|
|
unsigned np = prod->num_states();
|
|
v.resize(np);
|
|
unsigned useful_states = 0;
|
|
for (unsigned n = 0; n < np; ++n)
|
|
{
|
|
bool uf = useful[sccmap_prod.scc_of(n)];
|
|
v[n] = uf;
|
|
useful_states += uf;
|
|
}
|
|
|
|
if (aut->num_states() != useful_states)
|
|
return false;
|
|
|
|
unsigned useful_edges = 0;
|
|
for (const auto& e: prod->edges())
|
|
useful_edges += v[e.src] && v[e.dst];
|
|
|
|
return aut->num_edges() == useful_edges;
|
|
}
|
|
|
|
bool check_unambiguous(const twa_graph_ptr& aut)
|
|
{
|
|
bool u = is_unambiguous(aut);
|
|
aut->prop_unambiguous(u);
|
|
return u;
|
|
}
|
|
}
|