spot/src/tgba/tgbaproduct.cc
Alexandre Duret-Lutz c4a5b325a2 * src/sanity/style.test: New file.
* src/sanity/Makefile.am (check-local): Run it.
* src/ltlvisit/nenoform.cc, src/ltlvisit/tostring.cc,
src/tgba/bdddict.cc, src/tgba/bddprint.cc, src/tgba/tgba.cc,
src/tgba/tgbaproduct.cc, src/tgbaalgos/lbtt.cc,
src/tgbaalgos/magic.cc, src/tgbaalgos/powerset.cc,
src/tgbaalgos/reachiter.cc, src/tgbaalgos/gtec/ce.cc,
src/tgbaalgos/gtec/gtec.cc, src/tgbatest/ltl2tgba.cc: Fix style
issues reported by style.test.
2004-05-10 18:38:20 +00:00

293 lines
7 KiB
C++

// 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.
#include "tgbaproduct.hh"
#include <string>
#include <cassert>
namespace spot
{
////////////////////////////////////////////////////////////
// state_product
state_product::state_product(const state_product& o)
: state(),
left_(o.left()->clone()),
right_(o.right()->clone())
{
}
state_product::~state_product()
{
delete left_;
delete right_;
}
int
state_product::compare(const state* other) const
{
const state_product* o = dynamic_cast<const state_product*>(other);
assert(o);
int res = left_->compare(o->left());
if (res != 0)
return res;
return right_->compare(o->right());
}
size_t
state_product::hash() const
{
// We assume that size_t has at least 32bits.
return (left_->hash() << 16) + (right_->hash() & 0xFFFF);
}
state_product*
state_product::clone() const
{
return new state_product(*this);
}
////////////////////////////////////////////////////////////
// tgba_succ_iterator_product
tgba_succ_iterator_product::tgba_succ_iterator_product
(tgba_succ_iterator* left, tgba_succ_iterator* right,
bdd left_neg, bdd right_neg)
: left_(left), right_(right),
left_neg_(left_neg),
right_neg_(right_neg)
{
}
tgba_succ_iterator_product::~tgba_succ_iterator_product()
{
delete left_;
if (right_)
delete right_;
}
void
tgba_succ_iterator_product::step_()
{
left_->next();
if (left_->done())
{
left_->first();
right_->next();
}
}
void
tgba_succ_iterator_product::next_non_false_()
{
while (!done())
{
bdd l = left_->current_condition();
bdd r = right_->current_condition();
bdd current_cond = l & r;
if (current_cond != bddfalse)
{
current_cond_ = current_cond;
return;
}
step_();
}
}
void
tgba_succ_iterator_product::first()
{
if (!right_)
return;
left_->first();
right_->first();
// If one of the two successor set is empty initially, we reset
// right_, so that done() can detect this situation easily. (We
// choose to reset right_ because this variable is already used by
// done().)
if (left_->done() || right_->done())
{
delete right_;
right_ = 0;
return;
}
next_non_false_();
}
void
tgba_succ_iterator_product::next()
{
step_();
next_non_false_();
}
bool
tgba_succ_iterator_product::done() const
{
return !right_ || right_->done();
}
state_product*
tgba_succ_iterator_product::current_state() const
{
return new state_product(left_->current_state(),
right_->current_state());
}
bdd
tgba_succ_iterator_product::current_condition() const
{
return current_cond_;
}
bdd tgba_succ_iterator_product::current_acceptance_conditions() const
{
return ((left_->current_acceptance_conditions() & right_neg_)
| (right_->current_acceptance_conditions() & left_neg_));
}
////////////////////////////////////////////////////////////
// tgba_product
tgba_product::tgba_product(const tgba* left, const tgba* right)
: dict_(left->get_dict()), left_(left), right_(right)
{
assert(dict_ == right->get_dict());
bdd lna = left_->neg_acceptance_conditions();
bdd rna = right_->neg_acceptance_conditions();
left_acc_complement_ = bdd_exist(lna, bdd_support(rna));
right_acc_complement_ = bdd_exist(rna, bdd_support(lna));
all_acceptance_conditions_ = ((left_->all_acceptance_conditions()
& right_acc_complement_)
| (right_->all_acceptance_conditions()
& left_acc_complement_));
neg_acceptance_conditions_ = lna & rna;
dict_->register_all_variables_of(&left_, this);
dict_->register_all_variables_of(&right_, this);
}
tgba_product::~tgba_product()
{
dict_->unregister_all_my_variables(this);
}
state*
tgba_product::get_init_state() const
{
return new state_product(left_->get_init_state(),
right_->get_init_state());
}
tgba_succ_iterator_product*
tgba_product::succ_iter(const state* local_state,
const state* global_state,
const tgba* global_automaton) const
{
const state_product* s =
dynamic_cast<const state_product*>(local_state);
assert(s);
// If global_automaton is not specified, THIS is the root of a
// product tree.
if (!global_automaton)
{
global_automaton = this;
global_state = local_state;
}
tgba_succ_iterator* li = left_->succ_iter(s->left(),
global_state, global_automaton);
tgba_succ_iterator* ri = right_->succ_iter(s->right(),
global_state, global_automaton);
return new tgba_succ_iterator_product(li, ri,
left_acc_complement_,
right_acc_complement_);
}
bdd
tgba_product::compute_support_conditions(const state* in) const
{
const state_product* s = dynamic_cast<const state_product*>(in);
assert(s);
bdd lsc = left_->support_conditions(s->left());
bdd rsc = right_->support_conditions(s->right());
return lsc & rsc;
}
bdd
tgba_product::compute_support_variables(const state* in) const
{
const state_product* s = dynamic_cast<const state_product*>(in);
assert(s);
bdd lsc = left_->support_variables(s->left());
bdd rsc = right_->support_variables(s->right());
return lsc & rsc;
}
bdd_dict*
tgba_product::get_dict() const
{
return dict_;
}
std::string
tgba_product::format_state(const state* state) const
{
const state_product* s = dynamic_cast<const state_product*>(state);
assert(s);
return (left_->format_state(s->left())
+ " * "
+ right_->format_state(s->right()));
}
state*
tgba_product::project_state(const state* s, const tgba* t) const
{
const state_product* s2 = dynamic_cast<const state_product*>(s);
assert(s2);
if (t == this)
return s2->clone();
state* res = left_->project_state(s2->left(), t);
if (res)
return res;
return right_->project_state(s2->right(), t);
}
bdd
tgba_product::all_acceptance_conditions() const
{
return all_acceptance_conditions_;
}
bdd
tgba_product::neg_acceptance_conditions() const
{
return neg_acceptance_conditions_;
}
}