From db7bd290dca4693645a46d054303a42a881a99a1 Mon Sep 17 00:00:00 2001 From: oblonski <4sschroeder@gmail.com> Date: Mon, 24 Nov 2014 13:32:51 +0100 Subject: [PATCH] deprecate ruin method --- .../src/main/java/jsprit/core/algorithm/ruin/RuinRadial.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jsprit-core/src/main/java/jsprit/core/algorithm/ruin/RuinRadial.java b/jsprit-core/src/main/java/jsprit/core/algorithm/ruin/RuinRadial.java index cf6c8c93..3c6daea0 100644 --- a/jsprit-core/src/main/java/jsprit/core/algorithm/ruin/RuinRadial.java +++ b/jsprit-core/src/main/java/jsprit/core/algorithm/ruin/RuinRadial.java @@ -297,7 +297,9 @@ final class RuinRadial extends AbstractRuinStrategy { /** * Removes targetJob and its neighborhood and returns the removed jobs. + * @deprecated will be private */ + @Deprecated public Collection ruinRoutes(Collection vehicleRoutes, Job targetJob, int nOfJobs2BeRemoved){ List unassignedJobs = new ArrayList(); int nNeighbors = nOfJobs2BeRemoved - 1;