Skip to content

Commit

Permalink
remove old comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddykasp committed Jul 10, 2024
1 parent e2adc3a commit e1e9e4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private int shiftNode(LGraph graph, List<Layer> subLayers, int targetLayer, int
// If there are no incoming edges, the nodeindex will have to be decreased by one
boolean noIncomingEdges = true;
List<LEdge> reversedIncomingEdges = Lists.reverse(Lists.newArrayList(node.getIncomingEdges()));
for (LEdge incomingEdge : reversedIncomingEdges) { // backwards?
for (LEdge incomingEdge : reversedIncomingEdges) {
noIncomingEdges = false;
LEdge nextEdgeToSplit = incomingEdge;
for (int layerIndex = 0; layerIndex < targetLayer; layerIndex++) {
Expand Down

0 comments on commit e1e9e4c

Please sign in to comment.