From 0f38d5ed7880e7d21e98d55315efa07d751c98d5 Mon Sep 17 00:00:00 2001 From: oblonski Date: Wed, 11 Jan 2017 20:30:07 +0100 Subject: [PATCH] align toString --- .../core/algorithm/recreate/DecreasingRelativeFixedCosts.java | 2 +- .../core/algorithm/recreate/IncreasingAbsoluteFixedCosts.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/DecreasingRelativeFixedCosts.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/DecreasingRelativeFixedCosts.java index f9b45879..4f5b67f4 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/DecreasingRelativeFixedCosts.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/DecreasingRelativeFixedCosts.java @@ -50,7 +50,7 @@ public final class DecreasingRelativeFixedCosts extends SolutionCompletenessRati @Override public String toString() { - return "[name=calculatesServiceInsertionConsideringFixCost][weightOfFixedCostSavings=" + weightDeltaFixCost + "]"; + return "[name=DecreasingRelativeFixedCosts][weightOfFixedCostSavings=" + weightDeltaFixCost + "]"; } private Capacity getCurrentMaxLoadInRoute(VehicleRoute route) { diff --git a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/IncreasingAbsoluteFixedCosts.java b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/IncreasingAbsoluteFixedCosts.java index 96854d57..ffaf2674 100644 --- a/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/IncreasingAbsoluteFixedCosts.java +++ b/jsprit-core/src/main/java/com/graphhopper/jsprit/core/algorithm/recreate/IncreasingAbsoluteFixedCosts.java @@ -44,7 +44,7 @@ public final class IncreasingAbsoluteFixedCosts extends SolutionCompletenessRati @Override public String toString() { - return "[name=calculatesServiceInsertionConsideringFixCost][weightOfFixedCostSavings=" + weightDeltaFixCost + "]"; + return "[name=IncreasingAbsoluteFixedCosts][weightOfFixedCostSavings=" + weightDeltaFixCost + "]"; } @Override