Commit 3ff3253f authored by Sebastian Vollbrecht's avatar Sebastian Vollbrecht
Browse files

Removed some unused imports, modified a comment.

parent dfa2aed9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -242,8 +242,8 @@ public class InfeasibleEdgeInspector implements Initializable {
		 * Make every problematic node's timeslot problematic (i.e. distribute the
		 * required delay over the edges leading to it). We must sort the nodes by their
		 * depth so that possible problematic zero nodes will be handled before their
		 * successors. Otherwise it might be possible for the summed delay (zero
		 * node plus the delay to the successor) to exceed the required delay.
		 * successors. Otherwise it might be possible for the summed delay (delay to the
		 * zero node plus the delay to the successor) to exceed the required delay.
		 */
		for (ResourceNode node : JavaUtils.asSortedList(infeasibleCfg.getProblematicNodes(), Comparator
				.comparingInt(n -> infeasibleCfg.getLayers().getDepth(n.getId())))) {
+0 −2
Original line number Diff line number Diff line
@@ -19,8 +19,6 @@ package graphgen.generator.components.nodes;

import graphgen.datastructures.SeededRandom;
import graphgen.generator.components.layers.LayerStructureBuilder;
import graphgen.generator.components.nodes.DistributionNodeCreator;
import graphgen.generator.components.nodes.NodeCreator;
import graphgen.generator.util.distribution.DeterministicDistribution;
import graphgen.graph.LayerStructure;
import graphgen.graph.Resource;
+0 −2
Original line number Diff line number Diff line
@@ -36,8 +36,6 @@ import graphgen.generator.components.layers.RandomShapeLayerCreator;
import graphgen.generator.components.nodes.DistributionNodeCreator;
import graphgen.generator.components.nodes.IdenticalNodeCreator;
import graphgen.generator.components.nodes.NodeCreator;
import graphgen.generator.components.properties.FeasibleMinIIProperty;
import graphgen.generator.components.properties.Property;
import graphgen.generator.exceptions.MinIIImpossibleException;
import graphgen.generator.util.distribution.DeterministicDistribution;
import graphgen.generator.util.distribution.Distribution;
+0 −1
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ package graphgen.generator.components.properties.util;

import graphgen.enums.EdgeType;
import graphgen.generator.GraphGenerator;
import graphgen.generator.components.properties.util.SCC;
import graphgen.generator.exceptions.SCCException;
import graphgen.graph.LayerStructure;
import graphgen.graph.Resource;