* src/tgbaalgos/postproc.cc, src/tgbaalgos/postproc.hh: New class to capture the postprocessing logic. * src/tgbaalgos/Makefile.am: Add them. * src/bin/ltl2tgba.cc, src/bin/man/ltl2tgba.x: New files. * src/bin/Makefile.am, src/bin/man/Makefile.am: Add them. * src/tgbatest/spotlbtt.test: Prune the list of configurations slightly. * src/tgbatest/spotlbtt2.test: New file. * src/tgbatest/Makefile.am: Add it. * bench/ltl2tgba/algorithms, bench/ltl2tgba/defs.in: Adjust to use the new binary. * NEWS: Update.
97 lines
1.5 KiB
Text
97 lines
1.5 KiB
Text
cat >"$conffile" <<EOF
|
|
Algorithm
|
|
{
|
|
Name = "Spin"
|
|
Path = "$LBTT_TRANSLATE"
|
|
Parameters = "--spin $SPIN"
|
|
Enabled = $HAVE_SPIN
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "ltl2ba"
|
|
Path = "$LBTT_TRANSLATE"
|
|
Parameters = "--spin $LTL2BA"
|
|
Enabled = $HAVE_LTL2BA
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "ltl3ba"
|
|
Path = "lbtt-translate"
|
|
Parameters = "--spin $LTL3BA"
|
|
Enabled = $HAVE_LTL3BA
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "ltl3ba -M"
|
|
Path = "lbtt-translate"
|
|
Parameters = "--spin '$LTL3BA -M'"
|
|
Enabled = $HAVE_LTL3BA
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "ltl3ba -S"
|
|
Path = "lbtt-translate"
|
|
Parameters = "--spin '$LTL3BA -S'"
|
|
Enabled = $HAVE_LTL3BA
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "ltl3ba -M -S"
|
|
Path = "lbtt-translate"
|
|
Parameters = "--spin '$LTL3BA -M -S'"
|
|
Enabled = $HAVE_LTL3BA
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "Modella"
|
|
Path = "$MODELLA"
|
|
Parameters = "-o1 -g -e -r12"
|
|
Enabled = $HAVE_MODELLA
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "Wring (RewRule+BoolOpt+AutSempl), degen"
|
|
Path = "$WRING2LBTT"
|
|
Parameters = "-d --5"
|
|
Enabled = $HAVE_WRING2LBTT
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "Wring (RewRule+BoolOpt+AutSempl)"
|
|
Path = "$WRING2LBTT"
|
|
Parameters = "--5"
|
|
Enabled = $HAVE_WRING2LBTT
|
|
}
|
|
|
|
Algorithm
|
|
{
|
|
Name = "NBA"
|
|
Path = "$LTL2NBA"
|
|
Enabled = $HAVE_LTL2NBA
|
|
}
|
|
EOF
|
|
|
|
|
|
for type in tgba ba; do
|
|
for pref in any deterministic small; do
|
|
for level in high; do
|
|
cat >>$conffile <<EOF
|
|
Algorithm
|
|
{
|
|
Name = "Spot ($type $pref $level)"
|
|
Path = "${LBTT_TRANSLATE}"
|
|
Parameters = "--spot '$LTL2TGBA --$type --$pref --$level --lbtt -F'"
|
|
Enabled = yes
|
|
}
|
|
EOF
|
|
done
|
|
done
|
|
done
|