chore: remove unused imports
This commit is contained in:
parent
eaa80d87fa
commit
0d9b2e450c
5 changed files with 0 additions and 12 deletions
|
@ -2,9 +2,7 @@ package org.insa.graphs.algorithm.marathon;
|
|||
|
||||
import java.util.List;
|
||||
|
||||
import org.insa.graphs.algorithm.AbstractSolution.Status;
|
||||
import org.insa.graphs.algorithm.ArcInspector;
|
||||
import org.insa.graphs.algorithm.ArcInspectorFactory;
|
||||
import org.insa.graphs.algorithm.shortestpath.DijkstraAlgorithm;
|
||||
import org.insa.graphs.algorithm.shortestpath.Label;
|
||||
import org.insa.graphs.algorithm.shortestpath.ShortestPathAlgorithm;
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
package org.insa.graphs.algorithm.marathon;
|
||||
|
||||
import java.util.EnumSet;
|
||||
|
||||
import org.insa.graphs.algorithm.AbstractInputData.Mode;
|
||||
import org.insa.graphs.algorithm.ArcInspector;
|
||||
import org.insa.graphs.model.AccessRestrictions.AccessMode;
|
||||
import org.insa.graphs.model.AccessRestrictions.AccessRestriction;
|
||||
import org.insa.graphs.model.Arc;
|
||||
import org.insa.graphs.model.Path;
|
||||
|
||||
|
|
|
@ -2,7 +2,6 @@ package org.insa.graphs.algorithm.shortestpath;
|
|||
|
||||
import org.insa.graphs.model.Node;
|
||||
import org.insa.graphs.model.Arc;
|
||||
import org.insa.graphs.algorithm.AbstractInputData.Mode;
|
||||
|
||||
public class Label implements Comparable<Label> {
|
||||
Node node;
|
||||
|
|
|
@ -2,8 +2,6 @@ package org.insa.graphs.algorithm.shortestpath;
|
|||
|
||||
import org.insa.graphs.model.Node;
|
||||
import org.insa.graphs.model.Point;
|
||||
import org.insa.graphs.algorithm.AbstractInputData.Mode;
|
||||
import org.insa.graphs.model.RoadInformation;
|
||||
|
||||
public class LabelStar extends Label {
|
||||
private double distanceToDestination;
|
||||
|
|
|
@ -11,8 +11,6 @@ import java.util.ArrayList;
|
|||
import java.util.Arrays;
|
||||
import java.util.Random;
|
||||
|
||||
import javax.print.attribute.standard.Destination;
|
||||
|
||||
import org.insa.graphs.algorithm.AbstractInputData.Mode;
|
||||
import org.insa.graphs.algorithm.ArcInspector;
|
||||
import org.insa.graphs.algorithm.ArcInspectorFactory;
|
||||
|
@ -25,7 +23,6 @@ import org.insa.graphs.model.io.GraphReader;
|
|||
import org.insa.graphs.model.io.PathReader;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.Description;
|
||||
import org.junit.runners.Parameterized.Parameter;
|
||||
|
||||
public abstract class ShortestPathAlgorithmTest {
|
||||
|
|
Loading…
Reference in a new issue