* src/twa/twa.hh, src/ta/ta.hh (current_state, current_acceptance_conditions, current_condition): Rename as... (dst, acc, cond): ... these. * iface/ltsmin/ltsmin.cc, src/kripke/fairkripke.cc, src/kripke/fairkripke.hh, src/kripke/kripke.cc, src/kripke/kripke.hh, src/kripke/kripkeexplicit.cc, src/kripke/kripkeexplicit.hh, src/kripke/kripkeprint.cc, src/ta/taexplicit.cc, src/ta/taexplicit.hh, src/ta/taproduct.cc, src/ta/taproduct.hh, src/ta/tgtaproduct.cc, src/ta/tgtaproduct.hh, src/taalgos/dot.cc, src/taalgos/emptinessta.cc, src/taalgos/minimize.cc, src/taalgos/reachiter.cc, src/taalgos/tgba2ta.cc, src/twa/taatgba.cc, src/twa/taatgba.hh, src/twa/twagraph.hh, src/twa/twaproduct.cc, src/twa/twasafracomplement.cc, src/twaalgos/bfssteps.cc, src/twaalgos/bfssteps.hh, src/twaalgos/compsusp.cc, src/twaalgos/copy.cc, src/twaalgos/emptiness.cc, src/twaalgos/gtec/gtec.cc, src/twaalgos/gv04.cc, src/twaalgos/lbtt.cc, src/twaalgos/ltl2tgba_fm.cc, src/twaalgos/magic.cc, src/twaalgos/minimize.cc, src/twaalgos/ndfs_result.hxx, src/twaalgos/reachiter.cc, src/twaalgos/se05.cc, src/twaalgos/stats.cc, src/twaalgos/stutter.cc, src/twaalgos/tau03.cc, src/twaalgos/tau03opt.cc, wrap/python/tests/interdep.py: Adjust. * NEWS: Mention the renamings.
184 lines
4.9 KiB
C++
184 lines
4.9 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2011, 2012, 2013, 2014, 2015 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/>.
|
|
|
|
#pragma once
|
|
|
|
#include <iosfwd>
|
|
#include "kripke.hh"
|
|
#include "tl/formula.hh"
|
|
#include "kripkeprint.hh"
|
|
|
|
namespace spot
|
|
{
|
|
/// \brief Concrete class for kripke states.
|
|
class SPOT_API state_kripke : public state
|
|
{
|
|
friend class kripke_explicit;
|
|
friend class kripke_explicit_succ_iterator;
|
|
private:
|
|
state_kripke();
|
|
|
|
/// \brief Compare two states.
|
|
///
|
|
/// This method returns an integer less than, equal to, or greater
|
|
/// than zero if \a this is found, respectively, to be less than, equal
|
|
/// to, or greater than \a other according to some implicit total order.
|
|
///
|
|
/// For moment, this method only compare the adress on the heap of the
|
|
/// twice pointers.
|
|
virtual int compare (const state* other) const;
|
|
|
|
/// \brief Hash a state
|
|
virtual size_t hash() const;
|
|
|
|
/// \brief Duplicate a state.
|
|
virtual state_kripke* clone() const;
|
|
|
|
/// \brief Add a condition to the conditions already in the state.
|
|
/// \param f The condition to add.
|
|
void add_conditions(bdd f);
|
|
|
|
/// \brief Add a new successor in the list.
|
|
/// \param succ The successor state to add.
|
|
void add_succ(state_kripke* succ);
|
|
|
|
virtual bdd
|
|
as_bdd() const
|
|
{
|
|
return bdd_;
|
|
}
|
|
|
|
/// \brief Release a state.
|
|
///
|
|
virtual void
|
|
destroy() const
|
|
{
|
|
}
|
|
|
|
virtual
|
|
~state_kripke ()
|
|
{
|
|
}
|
|
|
|
////////////////////////////////
|
|
// Management for succ_iterator
|
|
|
|
const std::list<state_kripke*>& get_succ() const;
|
|
|
|
bdd bdd_;
|
|
std::list<state_kripke*> succ_;
|
|
};
|
|
|
|
|
|
/// \class kripke_explicit_succ_iterator
|
|
/// \brief Implement iterator pattern on successor of a state_kripke.
|
|
class SPOT_API kripke_explicit_succ_iterator : public kripke_succ_iterator
|
|
{
|
|
public:
|
|
kripke_explicit_succ_iterator(const state_kripke*, bdd);
|
|
|
|
~kripke_explicit_succ_iterator();
|
|
|
|
virtual bool first();
|
|
virtual bool next();
|
|
virtual bool done() const;
|
|
|
|
virtual state_kripke* dst() const;
|
|
|
|
private:
|
|
const state_kripke* s_;
|
|
std::list<state_kripke*>::const_iterator it_;
|
|
};
|
|
|
|
|
|
/// \class kripke_explicit
|
|
/// \brief Kripke Structure.
|
|
class SPOT_API kripke_explicit : public kripke
|
|
{
|
|
public:
|
|
kripke_explicit(const bdd_dict_ptr&, state_kripke* = nullptr);
|
|
~kripke_explicit();
|
|
|
|
state_kripke* get_init_state() const;
|
|
|
|
/// \brief Allow to get an iterator on the state we passed in
|
|
/// parameter.
|
|
kripke_explicit_succ_iterator*
|
|
succ_iter(const spot::state* state) const;
|
|
|
|
/// \brief Get the condition on the state
|
|
bdd state_condition(const state* s) const;
|
|
/// \brief Get the condition on the state
|
|
bdd state_condition(const std::string&) const;
|
|
|
|
/// \brief Return the name of the state.
|
|
std::string format_state(const state*) const;
|
|
|
|
|
|
/// \brief Create state, if it does not already exists.
|
|
///
|
|
/// Used by the parser.
|
|
void add_state(std::string);
|
|
|
|
/// \brief Add a transition between two states.
|
|
void add_transition(std::string source,
|
|
std::string dest);
|
|
|
|
/// \brief Add a BDD condition to the state
|
|
///
|
|
/// \param add the condition.
|
|
/// \param on_me where add the condition.
|
|
void add_conditions(bdd add,
|
|
std::string on_me);
|
|
|
|
/// \brief Add a formula to the state corresponding to the name.
|
|
///
|
|
/// \param f the formula to add.
|
|
/// \param on_me the state where to add.
|
|
void add_condition(formula f, std::string on_me);
|
|
|
|
/// \brief Return map between states and their names.
|
|
const std::map<const state_kripke*, std::string>&
|
|
sn_get() const;
|
|
|
|
private:
|
|
/// \brief Add a state in the two maps.
|
|
void add_state(std::string, state_kripke*);
|
|
|
|
void add_conditions(bdd add,
|
|
state_kripke* on_me);
|
|
|
|
void add_transition(std::string source,
|
|
const state_kripke* dest);
|
|
|
|
void add_transition(state_kripke* source,
|
|
const state_kripke* dest);
|
|
|
|
state_kripke* init_;
|
|
std::map<const std::string, state_kripke*> ns_nodes_;
|
|
std::map<const state_kripke*, std::string> sn_nodes_;
|
|
};
|
|
|
|
inline kripke_explicit_ptr
|
|
make_kripke_explicit(const bdd_dict_ptr& d,
|
|
state_kripke* init = nullptr)
|
|
{
|
|
return std::make_shared<kripke_explicit>(d, init);
|
|
}
|
|
}
|