* src/ltlast/binop.cc, src/ltlast/binop.hh: Introduce
EConcatMarked ("<>+>").
* src/ltlvisit/basicreduce.cc, src/ltlvisit/consterm.cc,
src/ltlvisit/lunabbrev.cc, src/ltlvisit/nenoform.cc,
src/ltlvisit/reduce.cc, src/ltlvisit/simpfg.cc,
src/ltlvisit/syntimpl.cc, src/ltlvisit/tostring.cc,
src/tgbaalgos/ltl2taa.cc, src/tgbaalgos/eltl2tgba_lacim.cc,
src/tgbaalgos/ltl2tgba_lacim.cc, src/tgba/formula2bdd.cc,
src/tgba/formula2bdd.cc: Deal with it if possible or ignore
it.
338 lines
7.6 KiB
C++
338 lines
7.6 KiB
C++
// Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement
|
|
// de l'Epita (LRDE).
|
|
// Copyright (C) 2003, 2005 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 <cassert>
|
|
#include <utility>
|
|
#include "binop.hh"
|
|
#include "unop.hh"
|
|
#include "constant.hh"
|
|
#include "visitor.hh"
|
|
#include <iostream>
|
|
|
|
namespace spot
|
|
{
|
|
namespace ltl
|
|
{
|
|
binop::binop(type op, formula* first, formula* second)
|
|
: op_(op), first_(first), second_(second)
|
|
{
|
|
}
|
|
|
|
binop::~binop()
|
|
{
|
|
// Get this instance out of the instance map.
|
|
pairf pf(first(), second());
|
|
pair p(op(), pf);
|
|
map::iterator i = instances.find(p);
|
|
assert (i != instances.end());
|
|
instances.erase(i);
|
|
|
|
// Dereference children.
|
|
first()->destroy();
|
|
second()->destroy();
|
|
}
|
|
|
|
std::string
|
|
binop::dump() const
|
|
{
|
|
return (std::string("binop(") + op_name()
|
|
+ ", " + first()->dump()
|
|
+ ", " + second()->dump() + ")");
|
|
}
|
|
|
|
void
|
|
binop::accept(visitor& v)
|
|
{
|
|
v.visit(this);
|
|
}
|
|
|
|
void
|
|
binop::accept(const_visitor& v) const
|
|
{
|
|
v.visit(this);
|
|
}
|
|
|
|
const formula*
|
|
binop::first() const
|
|
{
|
|
return first_;
|
|
}
|
|
|
|
formula*
|
|
binop::first()
|
|
{
|
|
return first_;
|
|
}
|
|
|
|
const formula*
|
|
binop::second() const
|
|
{
|
|
return second_;
|
|
}
|
|
|
|
formula*
|
|
binop::second()
|
|
{
|
|
return second_;
|
|
}
|
|
|
|
binop::type
|
|
binop::op() const
|
|
{
|
|
return op_;
|
|
}
|
|
|
|
const char*
|
|
binop::op_name() const
|
|
{
|
|
switch (op_)
|
|
{
|
|
case Xor:
|
|
return "Xor";
|
|
case Implies:
|
|
return "Implies";
|
|
case Equiv:
|
|
return "Equiv";
|
|
case U:
|
|
return "U";
|
|
case R:
|
|
return "R";
|
|
case W:
|
|
return "W";
|
|
case M:
|
|
return "M";
|
|
case EConcat:
|
|
return "EConcat";
|
|
case EConcatMarked:
|
|
return "EConcatMarked";
|
|
case UConcat:
|
|
return "UConcat";
|
|
}
|
|
// Unreachable code.
|
|
assert(0);
|
|
return 0;
|
|
}
|
|
|
|
binop::map binop::instances;
|
|
|
|
formula*
|
|
binop::instance(type op, formula* first, formula* second)
|
|
{
|
|
// Sort the operands of commutative operators, so that for
|
|
// example the formula instance for 'a xor b' is the same as
|
|
// that for 'b xor a'.
|
|
|
|
// Trivial identities:
|
|
switch (op)
|
|
{
|
|
case Xor:
|
|
{
|
|
// Xor is commutative: sort operands.
|
|
formula_ptr_less_than cmp;
|
|
if (cmp(second, first) > 0)
|
|
std::swap(first, second);
|
|
}
|
|
// - (1 ^ Exp) = !Exp
|
|
// - (0 ^ Exp) = Exp
|
|
if (first == constant::true_instance())
|
|
return unop::instance(unop::Not, second);
|
|
if (first == constant::false_instance())
|
|
return second;
|
|
// We expect constants to appear first, because they are
|
|
// instantiated first.
|
|
assert(second != constant::false_instance());
|
|
assert(second != constant::true_instance());
|
|
break;
|
|
case Equiv:
|
|
{
|
|
// Equiv is commutative: sort operands.
|
|
formula_ptr_less_than cmp;
|
|
if (cmp(second, first) > 0)
|
|
std::swap(first, second);
|
|
}
|
|
// - (0 <=> Exp) = !Exp
|
|
// - (1 <=> Exp) = Exp
|
|
if (first == constant::false_instance())
|
|
return unop::instance(unop::Not, second);
|
|
if (first == constant::true_instance())
|
|
return second;
|
|
// We expect constants to appear first, because they are
|
|
// instantiated first.
|
|
assert(second != constant::false_instance());
|
|
assert(second != constant::true_instance());
|
|
break;
|
|
case Implies:
|
|
// - (1 => Exp) = Exp
|
|
// - (0 => Exp) = 0
|
|
// - (Exp => 1) = 1
|
|
// - (Exp => 0) = !Exp
|
|
if (first == constant::true_instance())
|
|
return second;
|
|
if (first == constant::false_instance())
|
|
{
|
|
second->destroy();
|
|
return first;
|
|
}
|
|
if (second == constant::true_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
if (second == constant::false_instance())
|
|
return unop::instance(unop::Not, first);
|
|
break;
|
|
case U:
|
|
// - (Exp U 1) = 1
|
|
// - (Exp U 0) = 0
|
|
// - (0 U Exp) = Exp
|
|
if (second == constant::true_instance()
|
|
|| second == constant::false_instance()
|
|
|| first == constant::false_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
break;
|
|
case W:
|
|
// - (Exp W 1) = 1
|
|
// - (0 W Exp) = Exp
|
|
// - (1 W Exp) = 1
|
|
if (second == constant::true_instance()
|
|
|| first == constant::false_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
if (first == constant::true_instance())
|
|
{
|
|
second->destroy();
|
|
return first;
|
|
}
|
|
break;
|
|
case R:
|
|
// - (Exp R 1) = 1
|
|
// - (Exp R 0) = 0
|
|
// - (1 R Exp) = Exp
|
|
if (second == constant::true_instance()
|
|
|| second == constant::false_instance()
|
|
|| first == constant::true_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
break;
|
|
case M:
|
|
// - (Exp M 0) = 0
|
|
// - (1 M Exp) = Exp
|
|
// - (0 M Exp) = 0
|
|
if (second == constant::false_instance()
|
|
|| first == constant::true_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
if (first == constant::false_instance())
|
|
{
|
|
second->destroy();
|
|
return first;
|
|
}
|
|
break;
|
|
case EConcat:
|
|
case EConcatMarked:
|
|
// - 0 <>-> Exp = 0
|
|
// - 1 <>-> Exp = Exp
|
|
// - #e <>-> Exp = 0
|
|
// - Exp <>-> 0 = 0
|
|
if (first == constant::true_instance())
|
|
return second;
|
|
if (first == constant::false_instance()
|
|
|| first == constant::empty_word_instance())
|
|
{
|
|
second->destroy();
|
|
return constant::false_instance();
|
|
}
|
|
if (second == constant::false_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
break;
|
|
case UConcat:
|
|
// - 0 []-> Exp = 1
|
|
// - 1 []-> Exp = Exp
|
|
// - #e []-> Exp = 1
|
|
// - Exp []-> 1 = 1
|
|
if (first == constant::true_instance())
|
|
return second;
|
|
if (first == constant::false_instance()
|
|
|| first == constant::empty_word_instance())
|
|
{
|
|
second->destroy();
|
|
return constant::true_instance();
|
|
}
|
|
if (second == constant::true_instance())
|
|
{
|
|
first->destroy();
|
|
return second;
|
|
}
|
|
break;
|
|
}
|
|
|
|
pairf pf(first, second);
|
|
pair p(op, pf);
|
|
map::iterator i = instances.find(p);
|
|
if (i != instances.end())
|
|
{
|
|
// This instance already exists.
|
|
first->destroy();
|
|
second->destroy();
|
|
return static_cast<binop*>(i->second->clone());
|
|
}
|
|
binop* ap = new binop(op, first, second);
|
|
instances[p] = ap;
|
|
return static_cast<binop*>(ap->clone());
|
|
}
|
|
|
|
unsigned
|
|
binop::instance_count()
|
|
{
|
|
return instances.size();
|
|
}
|
|
|
|
std::ostream&
|
|
binop::dump_instances(std::ostream& os)
|
|
{
|
|
for (map::iterator i = instances.begin(); i != instances.end(); ++i)
|
|
{
|
|
os << i->second << " = "
|
|
<< i->second->ref_count_() << " * "
|
|
<< i->second->dump()
|
|
<< std::endl;
|
|
}
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|