* src/evtgbaalgos/tgba2evtgba.cc (process_link): Fix prototype to match tgba_reachable_iterator::process_link. * src/ltlvisit/tunabbrev.hh: Add using super::visit, so that the other visit() method are in scope when we overload one. * src/tgba/tgbareduc.hh, src/tgba/tgbareduc.cc (start, end, process_link): Remove these empty methods. The default implementations are empty too, and process_link had the wrong prototype. * src/tgbaalgos/reductgba_sim.hh, src/tgbaalgos/reductgba_sim.cc (start, end, process_link): Likewise.
73 lines
2.6 KiB
C++
73 lines
2.6 KiB
C++
// Copyright (C) 2011 Laboratoire de Recherche et Développement de
|
|
// l'Epita (LRDE).
|
|
// Copyright (C) 2003, 2004 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 2 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 Spot; see the file COPYING. If not, write to the Free
|
|
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
// 02111-1307, USA.
|
|
|
|
#ifndef SPOT_LTLVISIT_TUNABBREV_HH
|
|
# define SPOT_LTLVISIT_TUNABBREV_HH
|
|
|
|
#include "ltlast/formula.hh"
|
|
#include "ltlvisit/lunabbrev.hh"
|
|
|
|
namespace spot
|
|
{
|
|
namespace ltl
|
|
{
|
|
/// \brief Clone and rewrite a formula to remove most of the
|
|
/// abbreviated LTL and logical operators.
|
|
/// \ingroup ltl_visitor
|
|
///
|
|
/// The rewriting performed on logical operator is
|
|
/// the same as the one done by spot::ltl::unabbreviate_logic_visitor.
|
|
///
|
|
/// This will also rewrite unary operators such as unop::F,
|
|
/// and unop::G, using only binop::U, and binop::R.
|
|
///
|
|
/// This visitor is public, because it's convenient
|
|
/// to derive from it and override some of its methods.
|
|
/// But if you just want the functionality, consider using
|
|
/// spot::ltl::unabbreviate_ltl instead.
|
|
class unabbreviate_ltl_visitor : public unabbreviate_logic_visitor
|
|
{
|
|
typedef unabbreviate_logic_visitor super;
|
|
public:
|
|
unabbreviate_ltl_visitor();
|
|
virtual ~unabbreviate_ltl_visitor();
|
|
|
|
using super::visit;
|
|
void visit(unop* uo);
|
|
|
|
formula* recurse(formula* f);
|
|
};
|
|
|
|
/// \brief Clone and rewrite a formula to remove most of the
|
|
/// abbreviated LTL and logical operators.
|
|
///
|
|
/// The rewriting performed on logical operator is
|
|
/// the same as the one done by spot::ltl::unabbreviate_logic.
|
|
///
|
|
/// This will also rewrite unary operators such as unop::F,
|
|
/// and unop::G, using only binop::U, and binop::R.
|
|
formula* unabbreviate_ltl(const formula* f);
|
|
}
|
|
}
|
|
|
|
#endif // SPOT_LTLVISIT_TUNABBREV_HH
|