This commit is contained in:
Artur Meski
2018-10-14 16:20:23 +01:00
parent b0317bef6e
commit 7b15c50803
15 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/sh
for y in 2; do
for x in `seq 1 50`;do
echo $x $y
filename="results/bc_f${y}_n${x}.out"
echo "$x" > $filename
./gen_bc.py $x $y > tmp.rs
../main -z -c -v -B tmp.rs >&1 >> $filename
result="$(tail -1 $filename | sed "s/STAT/$x /")"
echo $result >> results/summary_bc_f${y}.out
echo $result
echo
done
done
rm tmp.rs