* src/tgbatest/ltl2tgba.cc: Simplify using

emptiness_check_instantiator.
* src/tgba/tgba.cc, src/tgba/tgba.hh
(tgba::number_of_acceptance_conditions): Return an unsigned.
* bench/emptchk/algorithms, bench/emptchk/README,
src/tgbatest/emptchk.test, src/tgbatest/emptchke.test: Adjust
references to algorithms.
* bench/emptchk/pml-clserv.sh, bench/emptchk/pml-eeaean.sh: Quote
variables properly.
This commit is contained in:
Alexandre Duret-Lutz 2005-02-18 10:03:01 +00:00
parent 4e1916ec50
commit 3b3a196526
10 changed files with 141 additions and 277 deletions

View file

@ -34,13 +34,13 @@ do
echo " $model"
echo "+++++++++++++++++++++"
cat $FORMULAE |
cat "$FORMULAE" |
while read formula; do
echo "-----------------------------------------------------------"
echo "### formula: $formula"
cat $ALGORITHMS |
cat "$ALGORITHMS" |
while read algo; do
$LTL2TGBA -0 -e$algo $opts -Pmodels/$model "$formula"
"$LTL2TGBA" -0 -e"$algo" $opts -Pmodels/$model "$formula"
done
done
done