ProblemMax Work Time Property
The maximum work time for each resource.
The work time is the time from when the resource leaves the start
location until it returns to its end location.
(To ignore this constraint set it to a value less than zero).
This is a global setting and applies to all resources. To set a value
for an individual resource use MaxWorkTime in the Resource class.
This is a hard constraint that will always be satisfied.
Definition
Namespace: VRSolver
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
Assembly: VRSolver (in VRSolver.dll) Version: 1.15.0+d867f7e856f281547f683ef6449a86e433a2356d
C#
public TimeSpan MaxWorkTime { get; set; }VB
Public Property MaxWorkTime As TimeSpan
Get
SetC++
public:
property TimeSpan MaxWorkTime {
TimeSpan get ();
void set (TimeSpan value);
}F#
member MaxWorkTime : TimeSpan with get, set