|
@@ -27,7 +27,7 @@ public class ConflictDetection implements AlgorithmStage {
|
|
public StageStatus forwardStep() {
|
|
public StageStatus forwardStep() {
|
|
int oldI = i;
|
|
int oldI = i;
|
|
int oldL1 = l1;
|
|
int oldL1 = l1;
|
|
- LayeredGraphNode curr = graph.getContainedLayers().get( i + 1 ).get( l1 );
|
|
|
|
|
|
+ LayeredGraphNode curr = graph.getContainedLayers().get( i + 1 ).get( l1 ); // TODO: fix IndexOutOfBoundsException
|
|
curr.setSelected( null );
|
|
curr.setSelected( null );
|
|
ArrayList< LayeredGraphEdge > edges = curr.getIncomingEdges();
|
|
ArrayList< LayeredGraphEdge > edges = curr.getIncomingEdges();
|
|
LayeredGraphEdge dummyEdge = null;
|
|
LayeredGraphEdge dummyEdge = null;
|