Skip to content

Commit

Permalink
comment added back in
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorWiecz committed May 15, 2024
1 parent 7586cf7 commit c78bfe2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public static ArrayList<ArrayList<String>> getEdgeCliqueCover(Graph graph, Array
finalCliquesAsEdges.get(cliqueNumber).add(u + j);
finalCliquesAsEdges.get(cliqueNumber).add(j + u);

// Updating the number of cliques the edge is contained in
int oldVal = edgeNameToNoOfCliquesItsContainedIn.get(u + j);
edgeNameToNoOfCliquesItsContainedIn.replace(u + j, oldVal + 1);
edgeNameToNoOfCliquesItsContainedIn.replace(j + u, oldVal + 1);
Expand Down

0 comments on commit c78bfe2

Please sign in to comment.