From 1f234dea74177a71792d4013c50e904939224e1f Mon Sep 17 00:00:00 2001 From: jsprit Date: Fri, 27 Dec 2013 21:51:40 +0100 Subject: [PATCH] Update VehicleRoutingProblem.java --- .../java/jsprit/core/problem/VehicleRoutingProblem.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jsprit-core/src/main/java/jsprit/core/problem/VehicleRoutingProblem.java b/jsprit-core/src/main/java/jsprit/core/problem/VehicleRoutingProblem.java index b10a855c..769f724a 100644 --- a/jsprit-core/src/main/java/jsprit/core/problem/VehicleRoutingProblem.java +++ b/jsprit-core/src/main/java/jsprit/core/problem/VehicleRoutingProblem.java @@ -259,13 +259,13 @@ public class VehicleRoutingProblem { } /** - * Sets the activityCostFunction that considers also activities on a vehicle-route. + * Sets the activity-costs. * - *

Here you can consider missed time-windows for example. By default, this is set to a DefaultVehicleActivityCostFunction. + *

By default it is set to zero. * * @param activityCosts * @return - * @see VehicleRoutingTransportCosts, DefaultVehicleRouteCostFunction + * @see VehicleRoutingActivityCosts */ public Builder setActivityCosts(VehicleRoutingActivityCosts activityCosts){ this.activityCosts = activityCosts;