Fixed a problem in the degree script.
authorJohannes Middeke <jmiddeke@risc.jku.at>
Wed, 4 May 2016 20:59:04 +0000 (22:59 +0200)
committerJohannes Middeke <jmiddeke@risc.jku.at>
Wed, 4 May 2016 20:59:04 +0000 (22:59 +0200)
degrees.sh

index 249e04f..00f5813 100644 (file)
@@ -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 \