#!/bin/csh # this is the key file...running the entire algorithm from start to end # # $1 = number of elements in the sequence # $2 = capacity M # $3 = number of intervals K # ########################## delete unnecessary files rm -fr accurate # # echo "\n" >> TestResult date >> TestResult cat infile.dat >> TestResult echo $1 $2 $3 >> TestResult java numberGenerator 1 100 $1 infile.dat java -Xmx1073741824 matrixRevolution $2 $3 >> TestResult date >> TestResult # # java -Xmx1073741824 matrixFlow $2 $3 infile.dat # # #### post processing ################################# cat approx >> TestResult date >> TestResult ########################## delete unnecessary files # rm -fr approx ##########################