Add missing impl tests and automated testing from makefile
authorJakob Cornell <jakob@jcornell.net>
Mon, 9 Sep 2019 00:49:59 +0000 (19:49 -0500)
committerJakob Cornell <jakob@jcornell.net>
Mon, 9 Sep 2019 00:49:59 +0000 (19:49 -0500)
commit99569dff4791bb5492eddf5fbb6b960f1bf859db
tree09b475e34a74687bde7534f3694f865d4d88372e
parent3daadcecd8525514918341b9c7c722480912582e
Add missing impl tests and automated testing from makefile
46 files changed:
.gitignore
algorithms/dijkstra/impl/java/Graph.java [deleted file]
algorithms/dijkstra/impl/java/Main.java [deleted file]
algorithms/dijkstra/impl/python3/dijkstra.py [deleted file]
algorithms/dijkstra/impl/python3/usage.py [deleted file]
algorithms/dijkstra/topic.tex
algorithms/hull-2d/impl/java/Hull.java [deleted file]
algorithms/hull-2d/impl/java/Main.java [deleted file]
algorithms/hull-2d/impl/python3/hull.py [deleted file]
algorithms/hull-2d/impl/python3/usage.py [deleted file]
algorithms/hull-2d/topic.tex
algorithms/network-flows/impl/java-junk/FlowNet.java [deleted file]
algorithms/network-flows/impl/java-junk/Main.java [deleted file]
algorithms/network-flows/impl/java-junk/usage [deleted file]
algorithms/network-flows/impl/python3/flows.py [deleted file]
algorithms/network-flows/topic.tex
config.py
contributors
doc.tex
impl/dijkstra/java/Graph.java [new file with mode: 0644]
impl/dijkstra/java/Test.java [new file with mode: 0644]
impl/dijkstra/java/Usage.java [new file with mode: 0644]
impl/dijkstra/java/makefile [new file with mode: 0644]
impl/dijkstra/python3/dijkstra.py [new file with mode: 0644]
impl/dijkstra/python3/makefile [new file with mode: 0644]
impl/dijkstra/python3/test.py [new file with mode: 0644]
impl/dijkstra/python3/usage.py [new file with mode: 0644]
impl/hull-2d/java/Hull.java [new file with mode: 0644]
impl/hull-2d/java/Test.java [new file with mode: 0644]
impl/hull-2d/java/Usage.java [new file with mode: 0644]
impl/hull-2d/java/makefile [new file with mode: 0644]
impl/hull-2d/python3/hull.py [new file with mode: 0644]
impl/hull-2d/python3/makefile [new file with mode: 0644]
impl/hull-2d/python3/test.py [new file with mode: 0644]
impl/hull-2d/python3/usage.py [new file with mode: 0644]
impl/network-flows/java-junk/FlowNet.java [new file with mode: 0644]
impl/network-flows/java-junk/Main.java [new file with mode: 0644]
impl/network-flows/java-junk/usage [new file with mode: 0644]
impl/network-flows/python3/flows.py [new file with mode: 0644]
impl/network-flows/python3/makefile [new file with mode: 0644]
impl/network-flows/python3/test.py [new file with mode: 0644]
impl/network-flows/python3/usage.py [new file with mode: 0644]
makefile
readme [deleted file]
readme.md [new file with mode: 0644]
util/run_all_tests.py [new file with mode: 0644]