From: Johannes Middeke Date: Wed, 4 May 2016 20:59:04 +0000 (+0200) Subject: Fixed a problem in the degree script. X-Git-Url: http://git.risc.jku.at/gitweb/?a=commitdiff_plain;h=64a0ae173a1a6e6b586672339dc3943c5d06e20c;p=jmiddeke%2FLU.git Fixed a problem in the degree script. --- diff --git a/degrees.sh b/degrees.sh index 249e04f..00f5813 100644 --- a/degrees.sh +++ b/degrees.sh @@ -4,7 +4,7 @@ # each iteration and we already have 20 from the test run. Maximale # sample number is 300. -for N in `seq 40 20 300` +for N in `seq 80 20 300` do # Run experiment echo > DATA.degrees.$N @@ -15,15 +15,17 @@ do done # Clean up results - echo 'let data = [' + echo 'let data = [' \ + > dataDEGREES.ml cat DATA.* \ | sed 's/[a-z =]//g' \ | cut -d, -f1,3,5 \ | sed 's/\.$/;/' \ - > dataDEGREES.ml + >> dataDEGREES.ml - echo ']' + echo ']' \ + >> dataDEGREES.ml # Generate an deploy HTML ocaml makeHTMLdegrees.ml --samples $N \