Loading src/Main.javadeleted 100644 → 0 +0 −15 Original line number Diff line number Diff line import Graph.readFile; import java.util.Arrays; public class Main { public static void main(String[] args) { readFile processInput = new readFile(); processInput.parseCommand(args); processInput.makeVertexHash(processInput.path[0]); processInput.makeMatrix(); System.out.print(processInput.adjMatrix.toString()); System.out.print(Arrays.toString(processInput.getVertices())); System.out.print(Arrays.toString(processInput.getFaces())); } } src/Graph/AdjacencyMatrix.java→src/main/java/Graph/AdjacencyMatrix.java +0 −0 File moved. View file src/Graph/VertexKey.java→src/main/java/Graph/VertexKey.java +0 −0 File moved. View file src/Graph/readFile.java→src/main/java/Graph/readFile.java +0 −0 File moved. View file src/main/java/module-info.java 0 → 100644 +8 −0 Original line number Diff line number Diff line module org.example.newmat { requires javafx.controls; requires javafx.fxml; opens org.example.newmat to javafx.fxml; exports org.example.newmat; } No newline at end of file Loading
src/Main.javadeleted 100644 → 0 +0 −15 Original line number Diff line number Diff line import Graph.readFile; import java.util.Arrays; public class Main { public static void main(String[] args) { readFile processInput = new readFile(); processInput.parseCommand(args); processInput.makeVertexHash(processInput.path[0]); processInput.makeMatrix(); System.out.print(processInput.adjMatrix.toString()); System.out.print(Arrays.toString(processInput.getVertices())); System.out.print(Arrays.toString(processInput.getFaces())); } }
src/main/java/module-info.java 0 → 100644 +8 −0 Original line number Diff line number Diff line module org.example.newmat { requires javafx.controls; requires javafx.fxml; opens org.example.newmat to javafx.fxml; exports org.example.newmat; } No newline at end of file