diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-03-11 16:20:30 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-11-15 17:38:44 +0100 |
commit | 2e2b1df2647f2ee3a25517020ca4b2e66b421fcb (patch) | |
tree | 285996d7db54ad88bd386a198748c6f0326e84d8 /Algorithms/Part-I/3-Collinear/run.sh | |
parent | bb98d03e7fb86ea37d0e275a041420619a5ca521 (diff) | |
download | coursera-2e2b1df2647f2ee3a25517020ca4b2e66b421fcb.zip coursera-2e2b1df2647f2ee3a25517020ca4b2e66b421fcb.tar.gz |
Algorithms-I : 3-Collinear: update run and add tests
Diffstat (limited to 'Algorithms/Part-I/3-Collinear/run.sh')
-rwxr-xr-x | Algorithms/Part-I/3-Collinear/run.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Algorithms/Part-I/3-Collinear/run.sh b/Algorithms/Part-I/3-Collinear/run.sh index 154d8d7..07ed3a3 100755 --- a/Algorithms/Part-I/3-Collinear/run.sh +++ b/Algorithms/Part-I/3-Collinear/run.sh @@ -13,12 +13,16 @@ done ~/algs4/bin/findbugs *.class echo "RUN..." -# java -enableassertions Point -# java Brute input6.txt -# java Brute input8.txt +java -enableassertions Point +java Brute input6.txt +java Brute input8.txt java Brute random152.txt -# java Fast input6.txt -# java Fast input8.txt +java Fast input6.txt +java Fast input8.txt +java Fast input300.txt +java Fast input400.txt java Fast random152.txt +java Fast input1000.txt +java Fast input10000.txt zip collinear.zip Point.java Brute.java Fast.java |