From 392167051fa808058dba85f083c5c5792b139827 Mon Sep 17 00:00:00 2001 From: oblonski Date: Fri, 11 Nov 2016 20:16:37 +0100 Subject: [PATCH] deprecated insertion calculators --- .../recreate/CalculatesServiceInsertionWithTimeScheduling.java | 2 +- .../CalculatesServiceInsertionWithTimeSchedulingInSlices.java | 2 +- .../recreate/RouteLevelActivityInsertionCostsEstimator.java | 2 +- .../recreate/ServiceInsertionOnRouteLevelCalculator.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeScheduling.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeScheduling.java index 62716618..44401a8b 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeScheduling.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeScheduling.java @@ -32,7 +32,7 @@ import java.util.Collection; import java.util.List; import java.util.Random; - +@Deprecated class CalculatesServiceInsertionWithTimeScheduling implements JobInsertionCostsCalculator { diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeSchedulingInSlices.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeSchedulingInSlices.java index 099b6b24..05d9c6c3 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeSchedulingInSlices.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/CalculatesServiceInsertionWithTimeSchedulingInSlices.java @@ -27,7 +27,7 @@ import org.slf4j.LoggerFactory; import java.util.ArrayList; import java.util.List; - +@Deprecated class CalculatesServiceInsertionWithTimeSchedulingInSlices implements JobInsertionCostsCalculator { diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/RouteLevelActivityInsertionCostsEstimator.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/RouteLevelActivityInsertionCostsEstimator.java index e47a48d8..d6fc01b4 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/RouteLevelActivityInsertionCostsEstimator.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/RouteLevelActivityInsertionCostsEstimator.java @@ -31,7 +31,7 @@ import com.graphhopper.jsprit.core.problem.solution.route.state.RouteAndActivity import java.util.ArrayList; import java.util.List; - +@Deprecated class RouteLevelActivityInsertionCostsEstimator implements ActivityInsertionCostsCalculator { private VehicleRoutingActivityCosts activityCosts; diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/ServiceInsertionOnRouteLevelCalculator.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/ServiceInsertionOnRouteLevelCalculator.java index b330d689..a600f3f6 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/ServiceInsertionOnRouteLevelCalculator.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/ServiceInsertionOnRouteLevelCalculator.java @@ -45,7 +45,7 @@ import java.util.Comparator; import java.util.List; import java.util.PriorityQueue; - +@Deprecated final class ServiceInsertionOnRouteLevelCalculator implements JobInsertionCostsCalculator { private static final Logger logger = LoggerFactory.getLogger(ServiceInsertionOnRouteLevelCalculator.class);