rm speed-graph.csv
for i in 0.0 0.05 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 1.5 2 2.5 3 3.5 4 4.5 5;
do
	rm tmp.txt
	for j in $(seq 10236 10236);
	do
		./runforall.sh speed.$i.txt -printtotalcosts -speed $i -seed $j $1 $2 $3 $4 $5 $6 $7 $8 $9
		./statistics < speed.$i.txt >> tmp.txt
	done
	./statistics <tmp.txt >> speed-graph.csv
done
