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;