At the same time, this adds a is_empty() method to the tgba class, simplifying many places that ran emptiness checks. * iface/dve2/dve2check.cc, src/bin/ltlcross.cc, src/dstarparse/dra2ba.cc, src/ltlvisit/contain.cc, src/tgba/tgba.cc, src/tgba/tgba.hh, src/tgbaalgos/emptiness.cc, src/tgbaalgos/emptiness.hh, src/tgbaalgos/gtec/ce.cc, src/tgbaalgos/gtec/ce.hh, src/tgbaalgos/gtec/gtec.cc, src/tgbaalgos/gtec/gtec.hh, src/tgbaalgos/gv04.cc, src/tgbaalgos/gv04.hh, src/tgbaalgos/magic.cc, src/tgbaalgos/magic.hh, src/tgbaalgos/minimize.cc, src/tgbaalgos/ndfs_result.hxx, src/tgbaalgos/powerset.cc, src/tgbaalgos/projrun.cc, src/tgbaalgos/projrun.hh, src/tgbaalgos/reducerun.cc, src/tgbaalgos/reducerun.hh, src/tgbaalgos/replayrun.cc, src/tgbaalgos/replayrun.hh, src/tgbaalgos/rundotdec.cc, src/tgbaalgos/rundotdec.hh, src/tgbaalgos/se05.cc, src/tgbaalgos/se05.hh, src/tgbaalgos/tau03.cc, src/tgbaalgos/tau03.hh, src/tgbaalgos/tau03opt.cc, src/tgbaalgos/tau03opt.hh, src/tgbaalgos/word.cc, src/tgbaalgos/word.hh, src/tgbatest/checkpsl.cc, src/tgbatest/complementation.cc, src/tgbatest/emptchk.cc, src/tgbatest/ltl2tgba.cc, src/tgbatest/randtgba.cc, wrap/python/ajax/spot.in, wrap/python/spot.i: Use shared_ptr.
157 lines
4.4 KiB
C++
157 lines
4.4 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2009, 2010, 2011, 2012, 2014 Laboratoire de Recherche
|
|
// et Développement de l'Epita (LRDE).
|
|
// Copyright (C) 2006, 2007 Laboratoire d'Informatique de Paris 6 (LIP6),
|
|
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
|
// et Marie Curie.
|
|
//
|
|
// 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 "contain.hh"
|
|
#include "simplify.hh"
|
|
#include "tunabbrev.hh"
|
|
#include "ltlast/unop.hh"
|
|
#include "ltlast/binop.hh"
|
|
#include "ltlast/multop.hh"
|
|
#include "ltlast/constant.hh"
|
|
#include "tgba/tgbaproduct.hh"
|
|
#include "tgbaalgos/gtec/gtec.hh"
|
|
#include "tgbaalgos/save.hh"
|
|
|
|
namespace spot
|
|
{
|
|
namespace ltl
|
|
{
|
|
|
|
language_containment_checker::language_containment_checker
|
|
(const bdd_dict_ptr& dict, bool exprop, bool symb_merge,
|
|
bool branching_postponement, bool fair_loop_approx)
|
|
: dict_(dict), exprop_(exprop), symb_merge_(symb_merge),
|
|
branching_postponement_(branching_postponement),
|
|
fair_loop_approx_(fair_loop_approx)
|
|
{
|
|
}
|
|
|
|
language_containment_checker::~language_containment_checker()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
void
|
|
language_containment_checker::clear()
|
|
{
|
|
while (!translated_.empty())
|
|
{
|
|
trans_map::iterator i = translated_.begin();
|
|
const formula* f = i->first;
|
|
translated_.erase(i);
|
|
f->destroy();
|
|
}
|
|
}
|
|
|
|
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();
|
|
l->incompatible[g] = res;
|
|
g->incompatible[l] = res;
|
|
return res;
|
|
}
|
|
|
|
|
|
// Check whether L(l) is a subset of L(g).
|
|
bool
|
|
language_containment_checker::contained(const formula* l,
|
|
const formula* g)
|
|
{
|
|
if (l == g)
|
|
return true;
|
|
record_* rl = register_formula_(l);
|
|
const formula* ng = unop::instance(unop::Not, g->clone());
|
|
record_* rng = register_formula_(ng);
|
|
ng->destroy();
|
|
return incompatible_(rl, rng);
|
|
}
|
|
|
|
// Check whether L(!l) is a subset of L(g).
|
|
bool
|
|
language_containment_checker::neg_contained(const formula* l,
|
|
const formula* g)
|
|
{
|
|
if (l == g)
|
|
return false;
|
|
const formula* nl = unop::instance(unop::Not, l->clone());
|
|
record_* rnl = register_formula_(nl);
|
|
const formula* ng = unop::instance(unop::Not, g->clone());
|
|
record_* rng = register_formula_(ng);
|
|
nl->destroy();
|
|
ng->destroy();
|
|
if (nl == g)
|
|
return true;
|
|
return incompatible_(rnl, rng);
|
|
}
|
|
|
|
// Check whether L(l) is a subset of L(!g).
|
|
bool
|
|
language_containment_checker::contained_neg(const formula* l,
|
|
const formula* g)
|
|
{
|
|
if (l == g)
|
|
return false;
|
|
record_* rl = register_formula_(l);
|
|
record_* rg = register_formula_(g);
|
|
return incompatible_(rl, rg);
|
|
}
|
|
|
|
// Check whether L(l) = L(g).
|
|
bool
|
|
language_containment_checker::equal(const formula* l, const formula* g)
|
|
{
|
|
return contained(l, g) && contained(g, l);
|
|
}
|
|
|
|
language_containment_checker::record_*
|
|
language_containment_checker::register_formula_(const formula* f)
|
|
{
|
|
trans_map::iterator 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_);
|
|
record_& r = translated_[f->clone()];
|
|
r.translation = e;
|
|
return &r;
|
|
}
|
|
|
|
|
|
const formula*
|
|
reduce_tau03(const formula* f, bool stronger)
|
|
{
|
|
if (!f->is_psl_formula())
|
|
return f->clone();
|
|
|
|
ltl_simplifier_options opt(false, false, false,
|
|
true, stronger);
|
|
ltl_simplifier simpl(opt);
|
|
return simpl.simplify(f);
|
|
}
|
|
}
|
|
}
|