This actually performs three related changes, but separating them
would be quite inconvenient.
1) rename tostring.hh to print.hh a welcome side-effect is that
I could fix several files that included this file for not reason.
2) de-overload some of the to_string functions, and rename them
as follow:
to_string -> print_psl, print_sere, str_psl, str_sere
to_utf8_string -> print_utf8_psl, print_utf8_sere,
str_utf8_psl, str_utf8_sere
to_spin_string -> print_spin_ltl, str_spin_ltl
to_wring_string -> print_wring_ltl, str_wing_ltl
to_lbt_string -> print_lbt_ltl, str_lbt_ltl
to_latex_string -> print_latex_psl, str_latex_psl
to_sclatex_string -> print_sclatex_psl, str_sclatex_psl
Now it is clearer what these functions do, and their restrictions.
3) all those print_* functions now take the stream to write onto
as their first argument. This fixes #88.
* src/ltlvisit/tostring.cc, src/ltlvisit/tostring.hh: Rename into...
* src/ltlvisit/print.cc, src/ltlvisit/print.hh: ... those, and make
the changes listed above.
* doc/org/tut01.org, src/bin/common_output.cc,
src/bin/common_trans.cc, src/bin/ltl2tgba.cc, src/bin/ltl2tgta.cc,
src/bin/ltlcross.cc, src/bin/ltldo.cc, src/bin/ltlfilt.cc,
src/bin/randltl.cc, src/ltlparse/ltlparse.yy,
src/ltlvisit/Makefile.am, src/ltlvisit/mark.cc,
src/ltlvisit/relabel.cc, src/ltlvisit/simplify.cc,
src/ltlvisit/snf.cc, src/ta/taexplicit.cc, src/ta/tgtaexplicit.cc,
src/taalgos/tgba2ta.cc, src/tests/equalsf.cc, src/tests/ltl2tgba.cc,
src/tests/ltlrel.cc, src/tests/randtgba.cc, src/tests/reduc.cc,
src/tests/syntimpl.cc, src/tests/tostring.cc, src/twa/bdddict.cc,
src/twa/bddprint.cc, src/twa/taatgba.cc, src/twa/taatgba.hh,
src/twa/twagraph.cc, src/twaalgos/compsusp.cc, src/twaalgos/lbtt.cc,
src/twaalgos/ltl2taa.cc, src/twaalgos/ltl2tgba_fm.cc,
src/twaalgos/neverclaim.cc, src/twaalgos/remprop.cc,
src/twaalgos/stats.cc, wrap/python/ajax/spot.in, wrap/python/spot.py,
wrap/python/spot_impl.i: Adjust.
371 lines
8.8 KiB
C++
371 lines
8.8 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2009, 2010, 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/>.
|
|
|
|
#include <map>
|
|
#include <algorithm>
|
|
#include <iterator>
|
|
#include <iostream>
|
|
#include "twa/formula2bdd.hh"
|
|
#include "ltlvisit/print.hh"
|
|
#include "ltlvisit/clone.hh"
|
|
#include "taatgba.hh"
|
|
|
|
namespace spot
|
|
{
|
|
/*--------.
|
|
| taa_tgba |
|
|
`--------*/
|
|
|
|
taa_tgba::taa_tgba(const bdd_dict_ptr& dict)
|
|
: twa(dict),
|
|
init_(0), state_set_vec_()
|
|
{
|
|
}
|
|
|
|
taa_tgba::~taa_tgba()
|
|
{
|
|
ss_vec::iterator j;
|
|
for (j = state_set_vec_.begin(); j != state_set_vec_.end(); ++j)
|
|
delete *j;
|
|
get_dict()->unregister_all_my_variables(this);
|
|
}
|
|
|
|
void
|
|
taa_tgba::add_condition(transition* t, const ltl::formula* f)
|
|
{
|
|
t->condition &= formula_to_bdd(f, get_dict(), this);
|
|
f->destroy();
|
|
}
|
|
|
|
state*
|
|
taa_tgba::get_init_state() const
|
|
{
|
|
assert(init_);
|
|
return new spot::set_state(init_);
|
|
}
|
|
|
|
twa_succ_iterator*
|
|
taa_tgba::succ_iter(const spot::state* state) const
|
|
{
|
|
const spot::set_state* s = down_cast<const spot::set_state*>(state);
|
|
assert(s);
|
|
return new taa_succ_iterator(s->get_state(), acc_);
|
|
}
|
|
|
|
bdd
|
|
taa_tgba::compute_support_conditions(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();
|
|
|
|
bdd res = bddtrue;
|
|
taa_tgba::state_set::const_iterator i;
|
|
taa_tgba::state::const_iterator j;
|
|
for (i = ss->begin(); i != ss->end(); ++i)
|
|
for (j = (*i)->begin(); j != (*i)->end(); ++j)
|
|
res |= (*j)->condition;
|
|
return res;
|
|
}
|
|
|
|
/*----------.
|
|
| state_set |
|
|
`----------*/
|
|
|
|
const taa_tgba::state_set*
|
|
set_state::get_state() const
|
|
{
|
|
return s_;
|
|
}
|
|
|
|
int
|
|
set_state::compare(const spot::state* other) const
|
|
{
|
|
const set_state* o = down_cast<const set_state*>(other);
|
|
assert(o);
|
|
|
|
const taa_tgba::state_set* s1 = get_state();
|
|
const taa_tgba::state_set* s2 = o->get_state();
|
|
|
|
if (s1->size() != s2->size())
|
|
return s1->size() - s2->size();
|
|
|
|
taa_tgba::state_set::const_iterator it1 = s1->begin();
|
|
taa_tgba::state_set::const_iterator it2 = s2->begin();
|
|
while (it2 != s2->end())
|
|
{
|
|
int i = *it1++ - *it2++;
|
|
if (i != 0)
|
|
return i;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
size_t
|
|
set_state::hash() const
|
|
{
|
|
size_t res = 0;
|
|
taa_tgba::state_set::const_iterator it = s_->begin();
|
|
while (it != s_->end())
|
|
{
|
|
res ^= reinterpret_cast<const char*>(*it++) - static_cast<char*>(0);
|
|
res = wang32_hash(res);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
set_state*
|
|
set_state::clone() const
|
|
{
|
|
if (delete_me_ && s_)
|
|
return new spot::set_state(new taa_tgba::state_set(*s_), true);
|
|
else
|
|
return new spot::set_state(s_, false);
|
|
}
|
|
|
|
/*--------------.
|
|
| taa_succ_iter |
|
|
`--------------*/
|
|
|
|
taa_succ_iterator::taa_succ_iterator(const taa_tgba::state_set* s,
|
|
const acc_cond& acc)
|
|
: seen_(), acc_(acc)
|
|
{
|
|
if (s->empty())
|
|
{
|
|
taa_tgba::transition* t = new taa_tgba::transition;
|
|
t->condition = bddtrue;
|
|
t->acceptance_conditions = 0U;
|
|
t->dst = new taa_tgba::state_set;
|
|
succ_.push_back(t);
|
|
return;
|
|
}
|
|
|
|
bounds_t bounds;
|
|
for (auto& i: *s)
|
|
bounds.emplace_back(i->begin(), i->end());
|
|
|
|
/// Sorting might make the cartesian product faster by not
|
|
/// exploring all possibilities.
|
|
std::sort(bounds.begin(), bounds.end(), distance_sort());
|
|
|
|
std::vector<iterator> pos;
|
|
pos.reserve(bounds.size());
|
|
for (auto i: bounds)
|
|
pos.push_back(i.first);
|
|
|
|
while (pos[0] != bounds[0].second)
|
|
{
|
|
taa_tgba::transition* t = new taa_tgba::transition;
|
|
t->condition = bddtrue;
|
|
t->acceptance_conditions = 0U;
|
|
taa_tgba::state_set* ss = new taa_tgba::state_set;
|
|
|
|
unsigned p;
|
|
for (p = 0; p < pos.size() && t->condition != bddfalse; ++p)
|
|
{
|
|
taa_tgba::state_set::const_iterator j;
|
|
for (j = (*pos[p])->dst->begin(); j != (*pos[p])->dst->end(); ++j)
|
|
if ((*j)->size() > 0) // Remove sink states.
|
|
ss->insert(*j);
|
|
|
|
// Fill the new transition.
|
|
t->condition &= (*pos[p])->condition;
|
|
t->acceptance_conditions |= (*pos[p])->acceptance_conditions;
|
|
} // If p != pos.size() we have found a contradiction
|
|
assert(p > 0);
|
|
t->dst = ss;
|
|
// Boxing to be able to insert ss in the map directly.
|
|
spot::set_state* b = new spot::set_state(ss);
|
|
|
|
// If no contradiction, then look for another transition to
|
|
// merge with the new one.
|
|
seen_map::iterator i = seen_.end(); // Initialize to silent a g++ warning.
|
|
std::vector<taa_tgba::transition*>::iterator j;
|
|
if (t->condition != bddfalse)
|
|
{
|
|
i = seen_.find(b);
|
|
if (i != seen_.end())
|
|
for (j = i->second.begin(); j != i->second.end(); ++j)
|
|
{
|
|
taa_tgba::transition* current = *j;
|
|
if (*current->dst == *t->dst
|
|
&& current->condition == t->condition)
|
|
{
|
|
current->acceptance_conditions &= t->acceptance_conditions;
|
|
break;
|
|
}
|
|
if (*current->dst == *t->dst
|
|
&& current->acceptance_conditions == t->acceptance_conditions)
|
|
{
|
|
current->condition |= t->condition;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
// Mark the new transition as seen and keep it if we have not
|
|
// found any contradiction and no other transition to merge
|
|
// with, or delete it otherwise.
|
|
if (t->condition != bddfalse
|
|
&& (i == seen_.end() || j == i->second.end()))
|
|
{
|
|
seen_[b].push_back(t);
|
|
if (i != seen_.end())
|
|
delete b;
|
|
succ_.push_back(t);
|
|
}
|
|
else
|
|
{
|
|
delete t->dst;
|
|
delete t;
|
|
delete b;
|
|
}
|
|
|
|
for (int i = pos.size() - 1; i >= 0; --i)
|
|
{
|
|
if ((i < int(p))
|
|
&& (std::distance(pos[i], bounds[i].second) > 1
|
|
|| (i == 0 && std::distance(pos[i], bounds[i].second) == 1)))
|
|
{
|
|
++pos[i];
|
|
break;
|
|
}
|
|
else
|
|
pos[i] = bounds[i].first;
|
|
}
|
|
}
|
|
}
|
|
|
|
taa_succ_iterator::~taa_succ_iterator()
|
|
{
|
|
for (seen_map::iterator i = seen_.begin(); i != seen_.end();)
|
|
{
|
|
// Advance the iterator before deleting the state set.
|
|
const spot::set_state* s = i->first;
|
|
++i;
|
|
delete s;
|
|
}
|
|
for (unsigned i = 0; i < succ_.size(); ++i)
|
|
{
|
|
delete succ_[i]->dst;
|
|
delete succ_[i];
|
|
}
|
|
}
|
|
|
|
bool
|
|
taa_succ_iterator::first()
|
|
{
|
|
i_ = succ_.begin();
|
|
return i_ != succ_.end();
|
|
}
|
|
|
|
bool
|
|
taa_succ_iterator::next()
|
|
{
|
|
++i_;
|
|
return i_ != succ_.end();
|
|
}
|
|
|
|
bool
|
|
taa_succ_iterator::done() const
|
|
{
|
|
return i_ == succ_.end();
|
|
}
|
|
|
|
spot::set_state*
|
|
taa_succ_iterator::current_state() const
|
|
{
|
|
assert(!done());
|
|
return new spot::set_state(new taa_tgba::state_set(*(*i_)->dst), true);
|
|
}
|
|
|
|
bdd
|
|
taa_succ_iterator::current_condition() const
|
|
{
|
|
assert(!done());
|
|
return (*i_)->condition;
|
|
}
|
|
|
|
acc_cond::mark_t
|
|
taa_succ_iterator::current_acceptance_conditions() const
|
|
{
|
|
assert(!done());
|
|
return acc_.comp((*i_)->acceptance_conditions);
|
|
}
|
|
|
|
/*----------------.
|
|
| taa_tgba_string |
|
|
`----------------*/
|
|
|
|
taa_tgba_string::~taa_tgba_string()
|
|
{
|
|
ns_map::iterator i;
|
|
for (i = name_state_map_.begin(); i != name_state_map_.end(); ++i)
|
|
{
|
|
taa_tgba::state::iterator i2;
|
|
for (i2 = i->second->begin(); i2 != i->second->end(); ++i2)
|
|
delete *i2;
|
|
delete i->second;
|
|
}
|
|
}
|
|
|
|
std::string
|
|
taa_tgba_string::label_to_string(const label_t& label) const
|
|
{
|
|
return label;
|
|
}
|
|
|
|
std::string
|
|
taa_tgba_string::clone_if(const label_t& label) const
|
|
{
|
|
return label;
|
|
}
|
|
|
|
/*-----------------.
|
|
| taa_tgba_formula |
|
|
`-----------------*/
|
|
|
|
taa_tgba_formula::~taa_tgba_formula()
|
|
{
|
|
ns_map::iterator i;
|
|
for (i = name_state_map_.begin(); i != name_state_map_.end();)
|
|
{
|
|
taa_tgba::state::iterator i2;
|
|
for (i2 = i->second->begin(); i2 != i->second->end(); ++i2)
|
|
delete *i2;
|
|
// Advance the iterator before destroying the formula.
|
|
const ltl::formula* s = i->first;
|
|
delete i->second;
|
|
++i;
|
|
s->destroy();
|
|
}
|
|
}
|
|
|
|
std::string
|
|
taa_tgba_formula::label_to_string(const label_t& label) const
|
|
{
|
|
return ltl::str_psl(label);
|
|
}
|
|
|
|
const ltl::formula*
|
|
taa_tgba_formula::clone_if(const label_t& label) const
|
|
{
|
|
return label->clone();
|
|
}
|
|
}
|