psl: add support for the [:*i..j] operator
This operator is to ':' what [*i..j] is to ';'. Part of issue #51. * doc/tl/tl.tex: Document syntax, semantic, and trivial simplifications. * doc/tl/spotltl.sty: Add macros for new operators. * src/ltlast/bunop.cc, src/ltlast/bunop.hh: Implement it. * src/ltlast/multop.cc: Add some trivial simplifications. * src/ltlparse/ltlparse.yy, src/ltlparse/ltlscan.ll: Parse it. * src/ltltest/equals.test, src/ltltest/latex.test, src/tgbatest/ltl2tgba.test: Add more tests. * src/ltlvisit/randomltl.cc: Output this operator in random PSL formulas. * src/ltltest/rand.test: Adjust. * src/tgbaalgos/ltl2tgba_fm.cc: Add translation rules. * src/ltlvisit/tostring.cc: Add pretty printing code. * src/ltlvisit/simplify.cc, src/ltlvisit/snf.cc: Adjust switches. * NEWS: Mention the new operator.
This commit is contained in:
parent
eebbcac281
commit
a79db4eefe
17 changed files with 442 additions and 162 deletions
|
|
@ -1,6 +1,6 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2008, 2010, 2012, 2013, 2014 Laboratoire de Recherche
|
||||
// et Développement de l'Epita (LRDE)
|
||||
// Copyright (C) 2008, 2010, 2012, 2013, 2014, 2015 Laboratoire de
|
||||
// Recherche et Développement de l'Epita (LRDE)
|
||||
// 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.
|
||||
|
|
@ -71,6 +71,8 @@ namespace spot
|
|||
KCloseBunop,
|
||||
KStarBunop,
|
||||
KPlusBunop,
|
||||
KFStarBunop,
|
||||
KFPlusBunop,
|
||||
KEqualBunop,
|
||||
KGotoBunop,
|
||||
};
|
||||
|
|
@ -108,6 +110,8 @@ namespace spot
|
|||
"]",
|
||||
"[*",
|
||||
"[+]",
|
||||
"[:*",
|
||||
"[:+]",
|
||||
"[=",
|
||||
"[->",
|
||||
};
|
||||
|
|
@ -121,7 +125,7 @@ namespace spot
|
|||
" <-> ", // rewritten, although supported
|
||||
" U ",
|
||||
" V ",
|
||||
" W ", // rewritten, although supported
|
||||
" W ", // rewritten
|
||||
" M ", // rewritten
|
||||
"<>-> ", // not supported
|
||||
"<>=> ", // not supported
|
||||
|
|
@ -145,6 +149,8 @@ namespace spot
|
|||
"]", // not supported
|
||||
"[*", // not supported
|
||||
"[+]", // not supported
|
||||
"[:*", // not supported
|
||||
"[:+]", // not supported
|
||||
"[=", // not supported
|
||||
"[->", // not supported
|
||||
};
|
||||
|
|
@ -182,6 +188,8 @@ namespace spot
|
|||
"]", // not supported
|
||||
"[*", // not supported
|
||||
"[+]", // not supported
|
||||
"[:*", // not supported
|
||||
"[:+]", // not supported
|
||||
"[=", // not supported
|
||||
"[->", // not supported
|
||||
};
|
||||
|
|
@ -219,6 +227,8 @@ namespace spot
|
|||
"]",
|
||||
"[*",
|
||||
"[+]",
|
||||
"[:*",
|
||||
"[:+]",
|
||||
"[=",
|
||||
"[->",
|
||||
};
|
||||
|
|
@ -256,6 +266,8 @@ namespace spot
|
|||
"}",
|
||||
"\\SereStar{",
|
||||
"\\SerePlus{}",
|
||||
"\\SereFStar{",
|
||||
"\\SereFPlus{}",
|
||||
"\\SereEqual{",
|
||||
"\\SereGoto{",
|
||||
};
|
||||
|
|
@ -297,6 +309,8 @@ namespace spot
|
|||
"}",
|
||||
"^{\\star",
|
||||
"^+",
|
||||
"^{\\mathsf{:}\\star",
|
||||
"^{\\mathsf{:}+}",
|
||||
"^{=",
|
||||
"^{\\to",
|
||||
};
|
||||
|
|
@ -577,17 +591,18 @@ namespace spot
|
|||
visit(const bunop* bo)
|
||||
{
|
||||
const formula* c = bo->child();
|
||||
enum { Star, Goto, Equal } sugar = Star;
|
||||
enum { Star, FStar, Goto } sugar = Star;
|
||||
unsigned default_min = 0;
|
||||
unsigned default_max = bunop::unbounded;
|
||||
|
||||
bunop::type op = bo->op();
|
||||
// Abbreviate "1[*]" as "[*]".
|
||||
if (c != constant::true_instance())
|
||||
if (c != constant::true_instance() || op != bunop::Star)
|
||||
{
|
||||
bunop::type op = bo->op();
|
||||
switch (op)
|
||||
{
|
||||
case bunop::Star:
|
||||
// Is this a Goto?
|
||||
if (const multop* mo = is_Concat(c))
|
||||
{
|
||||
unsigned s = mo->size();
|
||||
|
|
@ -599,6 +614,9 @@ namespace spot
|
|||
}
|
||||
}
|
||||
break;
|
||||
case bunop::FStar:
|
||||
sugar = FStar;
|
||||
break;
|
||||
}
|
||||
|
||||
emit_bunop_child(c);
|
||||
|
|
@ -616,8 +634,13 @@ namespace spot
|
|||
}
|
||||
emit(KStarBunop);
|
||||
break;
|
||||
case Equal:
|
||||
emit(KEqualBunop);
|
||||
case FStar:
|
||||
if (min == 1 && max == bunop::unbounded)
|
||||
{
|
||||
emit(KFPlusBunop);
|
||||
return;
|
||||
}
|
||||
emit(KFStarBunop);
|
||||
break;
|
||||
case Goto:
|
||||
emit(KGotoBunop);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue