Skip to content
Snippets Groups Projects
Commit 9c4c274b authored by Thorsten Wißmann's avatar Thorsten Wißmann :guitar:
Browse files

Improve testscripts

parent ed7be8e6
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
logic=GML
dir=$HOME/.www/cool/noon/
while sleep 0.1 ; do
ulimit -S -m 6000000
ulimit -H -m 6000000
for T in {0..2} ; do
for d in {6..10} ; do
echo
echo "=== d=$d ==="
~/git/cool-solver/randcool/dist/build/randcool/randcool \
-G \
--modal-depth-tbox 2 -T 0 -n 2 \
--max-conjuncts 6 \
--max-disjuncts 6 \
-d $d \
> input
./coalgcompare --timeout 300 generic$logic < input | tee -a ${logic}-d${d}-T${T}
done
done
while sleep 0.2 ; do
for T in 0 1 2 ; do
for d in {3..15} ; do
echo
echo "=== d=$d T=$T ==="
~/git/cool-solver/randcool/dist/build/randcool/randcool \
-G \
--no-toplevel-disj-form \
--no-toplevel-conj-tbox \
--modal-depth-tbox 2 -T 0 -n 2 \
--max-conjuncts 6 \
--max-disjuncts 6 \
-d $d \
> input
./coalgcompare --timeout 300 genericGML < input \
| tee -a $dir/GML-d${d}-T${T}.${HOSTNAME} \
|| break
done
done
done
......@@ -2,6 +2,9 @@
dir=$HOME/.www/cool/noon/
ulimit -S -m 6000000
ulimit -H -m 6000000
while sleep 0.2 ; do
for T in 5 ; do
for d in {8..15} ; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment