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

Add benchmark scripts for CL, GML and K

parent 064f3099
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
logic=CL
while sleep 0.1 ; do
for d in {2..20} ; do
echo
echo "=== d=$d ==="
~/git/cool-solver/randcool/dist/build/randcool/randcool \
--coalition-logic \
--modal-depth-tbox 2 -T 0 -n 2 \
-A 5 \
--max-conjuncts 4 \
--max-disjuncts 4 \
-d $d \
> input
./coalgcompare --timeout 300 generic$logic < input | tee -a ${logic}-${d}
done
done
#!/bin/bash
logic=GML
while sleep 0.1 ; do
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
done
#!/bin/bash
while true ; do
for d in {12..20} ; do
echo
echo "=== d=$d ==="
~/git/cool-solver/randcool/dist/build/randcool/randcool \
-K \
--modal-depth-tbox 2 -T 2 -n 2 \
--max-conjuncts 6 \
--max-disjuncts 6 \
-d $d \
> input
./coalgcompare --timeout 300 genericK < input | tee -a K-${d}
done
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment