* iface/dve2/dve2.cc, src/kripke/kripkeexplicit.cc, src/kripke/kripkeexplicit.hh, src/ta/tgtaexplicit.cc, src/ta/tgtaexplicit.hh, src/ta/tgtaproduct.cc, src/ta/tgtaproduct.hh, src/tgba/taatgba.cc, src/tgba/taatgba.hh, src/tgba/tgba.hh, src/tgba/tgbabddconcrete.cc, src/tgba/tgbabddconcrete.hh, src/tgba/tgbaexplicit.hh, src/tgba/tgbakvcomplement.cc, src/tgba/tgbakvcomplement.hh, src/tgba/tgbamask.cc, src/tgba/tgbamask.hh, src/tgba/tgbaproduct.cc, src/tgba/tgbaproduct.hh, src/tgba/tgbaproxy.cc, src/tgba/tgbaproxy.hh, src/tgba/tgbasafracomplement.cc, src/tgba/tgbasafracomplement.hh, src/tgba/tgbascc.cc, src/tgba/tgbascc.hh, src/tgba/tgbasgba.cc, src/tgba/tgbasgba.hh, src/tgba/tgbatba.cc, src/tgba/tgbatba.hh, src/tgba/tgbaunion.cc, src/tgba/tgbaunion.hh, src/tgba/wdbacomp.cc: Here. * NEWS: Mention it.
71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2009, 2013, 2014 Laboratoire de Recherche et
|
|
// Développement de l'Epita (LRDE).
|
|
//
|
|
// 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/>.
|
|
|
|
#ifndef SPOT_TGBA_TGBASGBA_HH
|
|
# define SPOT_TGBA_TGBASGBA_HH
|
|
|
|
#include "tgba.hh"
|
|
#include "misc/bddlt.hh"
|
|
|
|
namespace spot
|
|
{
|
|
|
|
/// \ingroup tgba_on_the_fly_algorithms
|
|
/// \brief Change the labeling-mode of spot::tgba on the fly, producing a
|
|
/// state-based generalized Büchi automaton.
|
|
///
|
|
/// This class acts as a proxy in front of a spot::tgba, that should
|
|
/// label on states on-the-fly. The result is still a spot::tgba,
|
|
/// but acceptances conditions are also on states.
|
|
class SPOT_API tgba_sgba_proxy : public tgba
|
|
{
|
|
public:
|
|
tgba_sgba_proxy(const tgba* a, bool no_zero_acc = true);
|
|
|
|
virtual ~tgba_sgba_proxy();
|
|
|
|
virtual state* get_init_state() const;
|
|
|
|
virtual tgba_succ_iterator* succ_iter(const state* state) const;
|
|
|
|
virtual bdd_dict* get_dict() const;
|
|
|
|
virtual std::string format_state(const state* state) const;
|
|
|
|
virtual bdd all_acceptance_conditions() const;
|
|
virtual bdd neg_acceptance_conditions() const;
|
|
|
|
/// \brief Retrieve the acceptance condition of a state.
|
|
bdd state_acceptance_conditions(const state* state) const;
|
|
protected:
|
|
virtual bdd compute_support_conditions(const state* state) const;
|
|
|
|
private:
|
|
const tgba* a_;
|
|
// If the automaton has no acceptance condition,
|
|
// every state is accepting.
|
|
bool emulate_acc_cond_;
|
|
bdd acceptance_condition_;
|
|
// Disallow copy.
|
|
tgba_sgba_proxy(const tgba_sgba_proxy&) SPOT_DELETED;
|
|
tgba_sgba_proxy& operator=(const tgba_sgba_proxy&) SPOT_DELETED;
|
|
};
|
|
|
|
}
|
|
#endif // SPOT_TGBA_TGBASGBA_HH
|