diff --git a/src/TestMatrix.java b/src/TestMatrix.java new file mode 100644 index 0000000..1eb95c5 --- /dev/null +++ b/src/TestMatrix.java @@ -0,0 +1,12 @@ +public class TestMatrix { + public static void main(String[] args) { + testImportCSV(); + } + + public static void testImportCSV() { + Matrix m = new Matrix(); + + m.importCSV("/home/satan/bin/graphprogram/graph.csv"); + System.out.println(m); + } +}