* spot/tl/contain.cc, spot/tl/contain.hh: Simplify the use of language_containment_checker by adding default argument. * python/spot/__init__.py, python/spot/impl.i: Bind it in Python. * doc/org/tut04.org: New file to illustrate it. * doc/org/tut.org, doc/Makefile.am: Add it. * NEWS: Mention those changes.
80 lines
2.6 KiB
C++
80 lines
2.6 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016 Laboratoire de Recherche
|
|
// et Développement de l'Epita (LRDE).
|
|
// Copyright (C) 2006 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/>.
|
|
|
|
#pragma once
|
|
|
|
#include <spot/tl/formula.hh>
|
|
#include <spot/twaalgos/ltl2tgba_fm.hh>
|
|
#include <spot/misc/hash.hh>
|
|
#include <map>
|
|
|
|
namespace spot
|
|
{
|
|
/// Check containment between LTL formulae.
|
|
class SPOT_API language_containment_checker
|
|
{
|
|
struct record_
|
|
{
|
|
const_twa_graph_ptr translation;
|
|
typedef std::map<const record_*, bool> incomp_map;
|
|
incomp_map incompatible;
|
|
};
|
|
typedef std::unordered_map<formula, record_> trans_map;
|
|
public:
|
|
/// This class uses spot::ltl_to_tgba_fm to translate LTL
|
|
/// formulae. See that function for the meaning of these options.
|
|
language_containment_checker(bdd_dict_ptr dict = make_bdd_dict(),
|
|
bool exprop = false,
|
|
bool symb_merge = true,
|
|
bool branching_postponement = false,
|
|
bool fair_loop_approx = false);
|
|
|
|
~language_containment_checker();
|
|
|
|
/// Clear the cache.
|
|
void clear();
|
|
|
|
/// Check whether L(l) is a subset of L(g).
|
|
bool contained(formula l, formula g);
|
|
/// Check whether L(!l) is a subset of L(g).
|
|
bool neg_contained(formula l, formula g);
|
|
/// Check whether L(l) is a subset of L(!g).
|
|
bool contained_neg(formula l, formula g);
|
|
|
|
/// Check whether L(l) = L(g).
|
|
bool equal(formula l, formula g);
|
|
|
|
protected:
|
|
bool incompatible_(record_* l, record_* g);
|
|
|
|
record_* register_formula_(formula f);
|
|
|
|
/* Translation options */
|
|
bdd_dict_ptr dict_;
|
|
bool exprop_;
|
|
bool symb_merge_;
|
|
bool branching_postponement_;
|
|
bool fair_loop_approx_;
|
|
/* Translation Maps */
|
|
trans_map translated_;
|
|
};
|
|
}
|