Began implimenting scan graph

This commit is contained in:
Quinn
2023-11-22 18:44:34 -05:00
parent 7dc679371a
commit b505524fe1
23 changed files with 258 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ public class Edge {
* @param vStart the vertex the edge starts at
* @param vEnd the vertex the edge ends at
*/
Edge(Vertex vStart, Vertex vEnd){
protected Edge(Vertex vStart, Vertex vEnd){
this.vStart = vStart;
this.vEnd = vEnd;
}