spot::contains(a, b) should test a⊇b. It was testing a⊆b instead. * NEWS: Mention the bug. * spot/twaalgos/contains.cc, spot/twaalgos/contains.hh: Fix the code and documentation. * tests/python/contains.ipynb: Adjust description and expected results. * python/spot/__init__.py: Also swap the argument of language_containment_checker.contains() * bin/autfilt.cc: Adjust usage.
60 lines
2.3 KiB
C++
60 lines
2.3 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2018 Laboratoire de Recherche et Développement de
|
|
// l'Epita.
|
|
//
|
|
// 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/twa/twagraph.hh>
|
|
#include <spot/tl/formula.hh>
|
|
|
|
/// \defgroup containment Language containment checks
|
|
/// \ingroup twa_algorithms
|
|
|
|
namespace spot
|
|
{
|
|
/// \ingroup containment
|
|
/// \brief Test if the language of \a right is included in that of \a left.
|
|
///
|
|
/// Both arguments can be either formulas or automata. Formulas
|
|
/// will be converted into automata.
|
|
///
|
|
/// The inclusion check if performed by ensuring that the automaton
|
|
/// associated to \a right does not intersect the automaton
|
|
/// associated to the complement of \a left. It helps if \a left
|
|
/// is a deterministic automaton or a formula (because in both cases
|
|
/// complementation is easier).
|
|
/// @{
|
|
SPOT_API bool contains(const_twa_graph_ptr left, const_twa_graph_ptr right);
|
|
SPOT_API bool contains(const_twa_graph_ptr left, formula right);
|
|
SPOT_API bool contains(formula left, const_twa_graph_ptr right);
|
|
SPOT_API bool contains(formula left, formula right);
|
|
/// @}
|
|
|
|
/// \ingroup containment
|
|
/// \brief Test if the language of \a left is equivalent to that of \a right.
|
|
///
|
|
/// Both arguments can be either formulas or automata. Formulas
|
|
/// will be converted into automata.
|
|
/// @{
|
|
SPOT_API bool are_equivalent(const_twa_graph_ptr left,
|
|
const_twa_graph_ptr right);
|
|
SPOT_API bool are_equivalent(const_twa_graph_ptr left, formula right);
|
|
SPOT_API bool are_equivalent(formula left, const_twa_graph_ptr right);
|
|
SPOT_API bool are_equivalent(formula left, formula right);
|
|
/// @}
|
|
}
|