* NEWS: Mention it. * bench/stutter/stutter_invariance_formulas.cc, bench/stutter/stutter_invariance_randomgraph.cc, doc/mainpage.dox, doc/org/tut01.org, doc/org/tut02.org, doc/org/tut10.org, doc/tl/tl.tex, iface/ltsmin/ltsmin.cc, iface/ltsmin/ltsmin.hh, iface/ltsmin/modelcheck.cc, src/bin/autfilt.cc, src/bin/common_aoutput.cc, src/bin/common_aoutput.hh, src/bin/common_finput.cc, src/bin/common_finput.hh, src/bin/common_output.cc, src/bin/common_output.hh, src/bin/common_r.hh, src/bin/common_trans.cc, src/bin/common_trans.hh, src/bin/dstar2tgba.cc, src/bin/genltl.cc, src/bin/ltl2tgba.cc, src/bin/ltl2tgta.cc, src/bin/ltlcross.cc, src/bin/ltldo.cc, src/bin/ltlfilt.cc, src/bin/ltlgrind.cc, src/bin/randaut.cc, src/bin/randltl.cc, src/kripke/kripkeexplicit.cc, src/kripke/kripkeexplicit.hh, src/kripkeparse/kripkeparse.yy, src/kripkeparse/public.hh, src/ltlparse/fmterror.cc, src/ltlparse/ltlparse.yy, src/ltlparse/ltlscan.ll, src/ltlparse/parsedecl.hh, src/ltlparse/public.hh, src/parseaut/parseaut.yy, src/parseaut/public.hh, src/tests/checkpsl.cc, src/tests/checkta.cc, src/tests/complementation.cc, src/tests/consterm.cc, src/tests/emptchk.cc, src/tests/equalsf.cc, src/tests/ikwiad.cc, src/tests/kind.cc, src/tests/length.cc, src/tests/ltlprod.cc, src/tests/ltlrel.cc, src/tests/parse.test, src/tests/parse_print_test.cc, src/tests/randtgba.cc, src/tests/readltl.cc, src/tests/reduc.cc, src/tests/syntimpl.cc, src/tests/taatgba.cc, src/tests/tostring.cc, src/tests/tostring.test, src/tl/apcollect.cc, src/tl/apcollect.hh, src/tl/contain.cc, src/tl/contain.hh, src/tl/declenv.cc, src/tl/declenv.hh, src/tl/defaultenv.cc, src/tl/defaultenv.hh, src/tl/dot.cc, src/tl/dot.hh, src/tl/environment.hh, src/tl/exclusive.cc, src/tl/exclusive.hh, src/tl/formula.cc, src/tl/formula.hh, src/tl/length.cc, src/tl/length.hh, src/tl/mark.cc, src/tl/mark.hh, src/tl/mutation.cc, src/tl/mutation.hh, src/tl/nenoform.cc, src/tl/nenoform.hh, src/tl/print.cc, src/tl/print.hh, src/tl/randomltl.cc, src/tl/randomltl.hh, src/tl/relabel.cc, src/tl/relabel.hh, src/tl/remove_x.cc, src/tl/remove_x.hh, src/tl/simpfg.cc, src/tl/simpfg.hh, src/tl/simplify.cc, src/tl/simplify.hh, src/tl/snf.cc, src/tl/snf.hh, src/tl/unabbrev.cc, src/tl/unabbrev.hh, src/twa/bdddict.cc, src/twa/bdddict.hh, src/twa/bddprint.cc, src/twa/formula2bdd.cc, src/twa/formula2bdd.hh, src/twa/taatgba.cc, src/twa/taatgba.hh, src/twa/twa.hh, src/twa/twagraph.cc, src/twa/twagraph.hh, src/twaalgos/compsusp.cc, src/twaalgos/compsusp.hh, src/twaalgos/ltl2taa.cc, src/twaalgos/ltl2taa.hh, src/twaalgos/ltl2tgba_fm.cc, src/twaalgos/ltl2tgba_fm.hh, src/twaalgos/minimize.cc, src/twaalgos/minimize.hh, src/twaalgos/neverclaim.cc, src/twaalgos/postproc.cc, src/twaalgos/postproc.hh, src/twaalgos/powerset.cc, src/twaalgos/powerset.hh, src/twaalgos/randomgraph.cc, src/twaalgos/randomgraph.hh, src/twaalgos/relabel.cc, src/twaalgos/relabel.hh, src/twaalgos/remprop.cc, src/twaalgos/remprop.hh, src/twaalgos/stats.cc, src/twaalgos/stats.hh, src/twaalgos/stutter.cc, src/twaalgos/stutter.hh, src/twaalgos/translate.cc, src/twaalgos/translate.hh, wrap/python/spot_impl.i: Remove the ltl namespace.
350 lines
9.5 KiB
C++
350 lines
9.5 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2009, 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 <set>
|
|
#include <iosfwd>
|
|
#include <vector>
|
|
#include <string>
|
|
#include "misc/hash.hh"
|
|
#include "tl/formula.hh"
|
|
#include "bdddict.hh"
|
|
#include "twa.hh"
|
|
|
|
namespace spot
|
|
{
|
|
/// \brief A self-loop Transition-based Alternating Automaton (TAA)
|
|
/// which is seen as a TGBA (abstract class, see below).
|
|
class SPOT_API taa_tgba: public twa
|
|
{
|
|
public:
|
|
taa_tgba(const bdd_dict_ptr& dict);
|
|
|
|
struct transition;
|
|
typedef std::list<transition*> state;
|
|
typedef std::set<state*> state_set;
|
|
|
|
/// Explicit transitions.
|
|
struct transition
|
|
{
|
|
bdd condition;
|
|
acc_cond::mark_t acceptance_conditions;
|
|
const state_set* dst;
|
|
};
|
|
|
|
void add_condition(transition* t, formula f);
|
|
|
|
/// TGBA interface.
|
|
virtual ~taa_tgba();
|
|
virtual spot::state* get_init_state() const final;
|
|
virtual twa_succ_iterator* succ_iter(const spot::state* state) const final;
|
|
virtual std::string format_state(const spot::state* state) const = 0;
|
|
|
|
protected:
|
|
virtual bdd compute_support_conditions(const spot::state* state)
|
|
const final;
|
|
|
|
typedef std::vector<taa_tgba::state_set*> ss_vec;
|
|
|
|
taa_tgba::state_set* init_;
|
|
ss_vec state_set_vec_;
|
|
|
|
std::map<formula, acc_cond::mark_t> acc_map_;
|
|
|
|
private:
|
|
// Disallow copy.
|
|
taa_tgba(const taa_tgba& other) SPOT_DELETED;
|
|
taa_tgba& operator=(const taa_tgba& other) SPOT_DELETED;
|
|
};
|
|
|
|
/// Set of states deriving from spot::state.
|
|
class SPOT_API set_state final: public spot::state
|
|
{
|
|
public:
|
|
set_state(const taa_tgba::state_set* s, bool delete_me = false)
|
|
: s_(s), delete_me_(delete_me)
|
|
{
|
|
}
|
|
|
|
virtual int compare(const spot::state*) const;
|
|
virtual size_t hash() const;
|
|
virtual set_state* clone() const;
|
|
|
|
virtual ~set_state()
|
|
{
|
|
if (delete_me_)
|
|
delete s_;
|
|
}
|
|
|
|
const taa_tgba::state_set* get_state() const;
|
|
private:
|
|
const taa_tgba::state_set* s_;
|
|
bool delete_me_;
|
|
};
|
|
|
|
class SPOT_API taa_succ_iterator final: public twa_succ_iterator
|
|
{
|
|
public:
|
|
taa_succ_iterator(const taa_tgba::state_set* s, const acc_cond& acc);
|
|
virtual ~taa_succ_iterator();
|
|
|
|
virtual bool first();
|
|
virtual bool next();
|
|
virtual bool done() const;
|
|
|
|
virtual set_state* current_state() const;
|
|
virtual bdd current_condition() const;
|
|
virtual acc_cond::mark_t current_acceptance_conditions() const;
|
|
|
|
private:
|
|
/// Those typedefs are used to generate all possible successors in
|
|
/// the constructor using a cartesian product.
|
|
typedef taa_tgba::state::const_iterator iterator;
|
|
typedef std::pair<iterator, iterator> iterator_pair;
|
|
typedef std::vector<iterator_pair> bounds_t;
|
|
typedef std::unordered_map<const spot::set_state*,
|
|
std::vector<taa_tgba::transition*>,
|
|
state_ptr_hash, state_ptr_equal> seen_map;
|
|
|
|
struct distance_sort :
|
|
public std::binary_function<const iterator_pair&,
|
|
const iterator_pair&, bool>
|
|
{
|
|
bool
|
|
operator()(const iterator_pair& lhs, const iterator_pair& rhs) const
|
|
{
|
|
return std::distance(lhs.first, lhs.second) <
|
|
std::distance(rhs.first, rhs.second);
|
|
}
|
|
};
|
|
|
|
std::vector<taa_tgba::transition*>::const_iterator i_;
|
|
std::vector<taa_tgba::transition*> succ_;
|
|
seen_map seen_;
|
|
const acc_cond& acc_;
|
|
};
|
|
|
|
/// A taa_tgba instance with states labeled by a given type.
|
|
/// Still an abstract class, see below.
|
|
template<typename label>
|
|
class SPOT_API taa_tgba_labelled: public taa_tgba
|
|
{
|
|
public:
|
|
taa_tgba_labelled(const bdd_dict_ptr& dict) : taa_tgba(dict) {};
|
|
|
|
~taa_tgba_labelled()
|
|
{
|
|
for (auto i: name_state_map_)
|
|
{
|
|
for (auto i2: *i.second)
|
|
delete i2;
|
|
delete i.second;
|
|
}
|
|
}
|
|
|
|
void set_init_state(const label& s)
|
|
{
|
|
std::vector<label> v(1);
|
|
v[0] = s;
|
|
set_init_state(v);
|
|
}
|
|
void set_init_state(const std::vector<label>& s)
|
|
{
|
|
init_ = add_state_set(s);
|
|
}
|
|
|
|
transition*
|
|
create_transition(const label& s,
|
|
const std::vector<label>& d)
|
|
{
|
|
state* src = add_state(s);
|
|
state_set* dst = add_state_set(d);
|
|
transition* t = new transition;
|
|
t->dst = dst;
|
|
t->condition = bddtrue;
|
|
t->acceptance_conditions = 0U;
|
|
src->push_back(t);
|
|
return t;
|
|
}
|
|
|
|
transition*
|
|
create_transition(const label& s, const label& d)
|
|
{
|
|
std::vector<std::string> vec;
|
|
vec.push_back(d);
|
|
return create_transition(s, vec);
|
|
}
|
|
|
|
void add_acceptance_condition(transition* t, formula f)
|
|
{
|
|
auto p = acc_map_.emplace(f, 0);
|
|
if (p.second)
|
|
p.first->second = acc_.marks({acc_.add_set()});
|
|
t->acceptance_conditions |= p.first->second;
|
|
}
|
|
|
|
/// \brief Format the state as a string for printing.
|
|
///
|
|
/// If state is a spot::set_state of only one element, then the
|
|
/// string corresponding to state->get_state() is returned.
|
|
///
|
|
/// Otherwise a string composed of each string corresponding to
|
|
/// each state->get_state() in the spot::set_state is returned,
|
|
/// e.g. like {string_1,...,string_n}.
|
|
virtual std::string format_state(const spot::state* s) const
|
|
{
|
|
const spot::set_state* se = down_cast<const spot::set_state*>(s);
|
|
assert(se);
|
|
const state_set* ss = se->get_state();
|
|
return format_state_set(ss);
|
|
}
|
|
|
|
/// \brief Output a TAA in a stream.
|
|
void output(std::ostream& os) const
|
|
{
|
|
typename ns_map::const_iterator i;
|
|
for (i = name_state_map_.begin(); i != name_state_map_.end(); ++i)
|
|
{
|
|
taa_tgba::state::const_iterator i2;
|
|
os << "State: " << label_to_string(i->first) << std::endl;
|
|
for (i2 = i->second->begin(); i2 != i->second->end(); ++i2)
|
|
{
|
|
os << ' ' << format_state_set((*i2)->dst)
|
|
<< ", C:" << (*i2)->condition
|
|
<< ", A:" << (*i2)->acceptance_conditions << std::endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
protected:
|
|
typedef label label_t;
|
|
|
|
typedef std::unordered_map<label, taa_tgba::state*> ns_map;
|
|
typedef std::unordered_map<const taa_tgba::state*, label,
|
|
ptr_hash<taa_tgba::state> > sn_map;
|
|
|
|
ns_map name_state_map_;
|
|
sn_map state_name_map_;
|
|
|
|
/// \brief Return a label as a string.
|
|
virtual std::string label_to_string(const label_t& lbl) const = 0;
|
|
|
|
private:
|
|
/// \brief Return the taa_tgba::state for \a name, creating it
|
|
/// when it does not exist already.
|
|
taa_tgba::state* add_state(const label& name)
|
|
{
|
|
typename ns_map::iterator i = name_state_map_.find(name);
|
|
if (i == name_state_map_.end())
|
|
{
|
|
taa_tgba::state* s = new taa_tgba::state;
|
|
name_state_map_[name] = s;
|
|
state_name_map_[s] = name;
|
|
return s;
|
|
}
|
|
return i->second;
|
|
}
|
|
|
|
/// \brief Return the taa::state_set for \a names.
|
|
taa_tgba::state_set* add_state_set(const std::vector<label>& names)
|
|
{
|
|
state_set* ss = new state_set;
|
|
for (unsigned i = 0; i < names.size(); ++i)
|
|
ss->insert(add_state(names[i]));
|
|
state_set_vec_.push_back(ss);
|
|
return ss;
|
|
}
|
|
|
|
std::string format_state_set(const taa_tgba::state_set* ss) const
|
|
{
|
|
state_set::const_iterator i1 = ss->begin();
|
|
typename sn_map::const_iterator i2;
|
|
if (ss->empty())
|
|
return std::string("{}");
|
|
if (ss->size() == 1)
|
|
{
|
|
i2 = state_name_map_.find(*i1);
|
|
assert(i2 != state_name_map_.end());
|
|
return "{" + label_to_string(i2->second) + "}";
|
|
}
|
|
else
|
|
{
|
|
std::string res("{");
|
|
while (i1 != ss->end())
|
|
{
|
|
i2 = state_name_map_.find(*i1++);
|
|
assert(i2 != state_name_map_.end());
|
|
res += label_to_string(i2->second);
|
|
res += ",";
|
|
}
|
|
res[res.size() - 1] = '}';
|
|
return res;
|
|
}
|
|
}
|
|
};
|
|
|
|
class SPOT_API taa_tgba_string final:
|
|
#ifndef SWIG
|
|
public taa_tgba_labelled<std::string>
|
|
#else
|
|
public taa_tgba
|
|
#endif
|
|
{
|
|
public:
|
|
taa_tgba_string(const bdd_dict_ptr& dict) :
|
|
taa_tgba_labelled<std::string>(dict) {}
|
|
~taa_tgba_string()
|
|
{}
|
|
protected:
|
|
virtual std::string label_to_string(const std::string& label) const;
|
|
};
|
|
|
|
typedef std::shared_ptr<taa_tgba_string> taa_tgba_string_ptr;
|
|
typedef std::shared_ptr<const taa_tgba_string> const_taa_tgba_string_ptr;
|
|
|
|
inline taa_tgba_string_ptr make_taa_tgba_string(const bdd_dict_ptr& dict)
|
|
{
|
|
return std::make_shared<taa_tgba_string>(dict);
|
|
}
|
|
|
|
class SPOT_API taa_tgba_formula final:
|
|
#ifndef SWIG
|
|
public taa_tgba_labelled<formula>
|
|
#else
|
|
public taa_tgba
|
|
#endif
|
|
{
|
|
public:
|
|
taa_tgba_formula(const bdd_dict_ptr& dict) :
|
|
taa_tgba_labelled<formula>(dict) {}
|
|
~taa_tgba_formula()
|
|
{}
|
|
protected:
|
|
virtual std::string label_to_string(const label_t& label) const;
|
|
};
|
|
|
|
typedef std::shared_ptr<taa_tgba_formula> taa_tgba_formula_ptr;
|
|
typedef std::shared_ptr<const taa_tgba_formula> const_taa_tgba_formula_ptr;
|
|
|
|
inline taa_tgba_formula_ptr make_taa_tgba_formula(const bdd_dict_ptr& dict)
|
|
{
|
|
return std::make_shared<taa_tgba_formula>(dict);
|
|
}
|
|
}
|