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.
165 lines
4.6 KiB
C++
165 lines
4.6 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/tl/contain.hh>
|
|
#include <spot/tl/formula.hh>
|
|
#include <spot/twaalgos/product.hh>
|
|
#include <spot/twaalgos/are_isomorphic.hh>
|
|
#include <spot/priv/robin_hood.hh>
|
|
#include <spot/twaalgos/ltl2tgba_fm.hh>
|
|
|
|
namespace spot
|
|
{
|
|
struct language_containment_checker::record_
|
|
{
|
|
const_twa_graph_ptr translation;
|
|
typedef robin_hood::unordered_flat_map<const record_*, bool> incomp_map;
|
|
incomp_map incompatible;
|
|
|
|
record_(const_twa_graph_ptr&& trans) noexcept
|
|
: translation(std::move(trans))
|
|
{
|
|
}
|
|
};
|
|
|
|
struct language_containment_checker::trans_map_ :
|
|
robin_hood::unordered_node_map<formula,
|
|
language_containment_checker::record_>
|
|
{
|
|
};
|
|
|
|
language_containment_checker::language_containment_checker
|
|
(bdd_dict_ptr dict, bool exprop, bool symb_merge,
|
|
bool branching_postponement, bool fair_loop_approx,
|
|
unsigned max_states)
|
|
: dict_(dict), exprop_(exprop), symb_merge_(symb_merge),
|
|
branching_postponement_(branching_postponement),
|
|
fair_loop_approx_(fair_loop_approx),
|
|
translated_(new trans_map_)
|
|
{
|
|
if (max_states)
|
|
aborter_ = std::make_unique<output_aborter>(max_states);
|
|
}
|
|
|
|
language_containment_checker::~language_containment_checker()
|
|
{
|
|
clear();
|
|
delete translated_;
|
|
}
|
|
|
|
void
|
|
language_containment_checker::clear()
|
|
{
|
|
translated_->clear();
|
|
}
|
|
|
|
bool
|
|
language_containment_checker::incompatible_(record_* l, record_* g)
|
|
{
|
|
record_::incomp_map::const_iterator i = l->incompatible.find(g);
|
|
if (i != l->incompatible.end())
|
|
return i->second;
|
|
|
|
bool res = product(l->translation, g->translation)->is_empty();
|
|
// bool res = !l->translation->intersects(g->translation);
|
|
l->incompatible[g] = res;
|
|
g->incompatible[l] = res;
|
|
return res;
|
|
}
|
|
|
|
static void trim_common_Xs(formula& l, formula& r)
|
|
{
|
|
while (l.is(op::X) && r.is(op::X))
|
|
{
|
|
l = l[0];
|
|
r = r[0];
|
|
}
|
|
}
|
|
|
|
// Check whether L(l) is a subset of L(!g).
|
|
bool
|
|
language_containment_checker::contained_neg(formula l,
|
|
formula g)
|
|
{
|
|
if (l == g)
|
|
return false;
|
|
trim_common_Xs(l, g);
|
|
record_* rl = register_formula_(l);
|
|
if (!rl->translation)
|
|
return false;
|
|
record_* rg = register_formula_(g);
|
|
if (!rg->translation)
|
|
return false;
|
|
return incompatible_(rl, rg);
|
|
}
|
|
|
|
|
|
// Check whether L(l) is a subset of L(g).
|
|
bool
|
|
language_containment_checker::contained(formula l,
|
|
formula g)
|
|
{
|
|
if (l == g)
|
|
return true;
|
|
return contained_neg(l, formula::Not(g));
|
|
}
|
|
|
|
|
|
// Check whether L(!l) is a subset of L(g).
|
|
bool
|
|
language_containment_checker::neg_contained(formula l,
|
|
formula g)
|
|
{
|
|
if (l == g)
|
|
return false;
|
|
formula nl = formula::Not(l);
|
|
return contained_neg(nl, formula::Not(g));
|
|
}
|
|
|
|
// Check whether L(l) = L(g).
|
|
bool
|
|
language_containment_checker::equal(formula l, formula g)
|
|
{
|
|
trim_common_Xs(l, g);
|
|
if (l == g)
|
|
return true;
|
|
record_* rl = register_formula_(l);
|
|
if (!rl->translation)
|
|
return false;
|
|
record_* rg = register_formula_(g);
|
|
if (!rg->translation)
|
|
return false;
|
|
if (isomorphism_checker::are_isomorphic(rl->translation, rg->translation))
|
|
return true;
|
|
return contained(l, g) && contained(g, l);
|
|
}
|
|
|
|
language_containment_checker::record_*
|
|
language_containment_checker::register_formula_(formula f)
|
|
{
|
|
auto i = translated_->find(f);
|
|
if (i != translated_->end())
|
|
return &i->second;
|
|
|
|
auto e = ltl_to_tgba_fm(f, dict_, exprop_, symb_merge_,
|
|
branching_postponement_, fair_loop_approx_,
|
|
nullptr, nullptr, false, aborter_.get());
|
|
return &translated_->emplace(f, std::move(e)).first->second;
|
|
}
|
|
}
|