minimum requirements fullfilled #4

Merged
AustrianToast merged 16 commits from dev into main 2023-05-23 13:50:00 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d690dd69d8 - Show all commits

View File

@ -1,6 +1,6 @@
public class TestGraph {
public static void main(String[] args) {
Graph g = new Graph("/home/old/projects/Java/graphprogram/24n_01.csv");
Graph g = new Graph("");
System.out.println(g);
}
}

View File

@ -1,6 +1,6 @@
public class TestMatrix {
public static void main(String[] args) {
Matrix matrix = new Matrix("/home/old/projects/Java/graphprogram/24n_01.csv");
Matrix matrix = new Matrix("");
Matrix scalarProduct;
System.out.println("RowLength: " + matrix.getRowLength());