Skip to content

Commit

Permalink
#35 clean up and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellMark committed Jul 7, 2023
1 parent ede67ec commit e8f042a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion Java Code/edgeStorageArrays.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ public boolean isCirculantLabeling(){
boolean isCir = true;

if(!allEdgesDegree4()) isCir=false;
//Needs a check for 4 vertices
//Needs method to get the cycle
//Needs method to check said cycle
return isCir;
Expand Down
5 changes: 4 additions & 1 deletion Java Code/generateGraphs.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ class generateGraphs{
public static void main(String[]args){
// Change for # of Vertices you'd like to generate
int numVertices =6;
// Change to true to keep zeroes TODO: change for more options

// Change number based on the desired method
// 1 = isDDMLabeling()
// 2 = isDDMLabelingIncludeZeroes()
// 3 = isCirculantLabeling()
Expand Down Expand Up @@ -175,6 +176,8 @@ public static void writeAllCombosToFileVisualization(ArrayList<edgeStorageArrays
}
}

// Selector method to call different methods based on the user selected number
// If invalid number selected, no grpahs are generated
public static boolean callSpecificMethod(int num, edgeStorageArrays current){
switch(num){
case(1):
Expand Down

0 comments on commit e8f042a

Please sign in to comment.