Introduce EConcatMarked "<>+>" as operator.

* 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.
This commit is contained in:
Alexandre Duret-Lutz 2010-02-24 16:15:17 +01:00
parent 66317db45c
commit 171ca678b8
14 changed files with 34 additions and 2 deletions

View file

@ -110,6 +110,7 @@ namespace spot
{
case binop::UConcat:
case binop::EConcat:
case binop::EConcatMarked:
os_ << "{ ";
top_level_ = true;
bo->first()->accept(*this);
@ -150,6 +151,9 @@ namespace spot
case binop::EConcat:
os_ << " }<>-> ";
break;
case binop::EConcatMarked:
os_ << " }<>+> ";
break;
}
bo->second()->accept(*this);
@ -342,6 +346,11 @@ namespace spot
os_ << " <>-> ";
bo->second()->accept(*this);
break;
case binop::EConcatMarked:
bo->first()->accept(*this);
os_ << " <>+> ";
bo->second()->accept(*this);
break;
/* W and M are not supported by Spin */
case binop::W:
bo->first()->accept(*this);
@ -350,7 +359,7 @@ namespace spot
break;
case binop::M:
bo->first()->accept(*this);
os_ << " M ";
os_ << " M ";
bo->second()->accept(*this);
break;
}