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;