You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Sometimes a Job requires multiple of the same resource. For instance, a Job might require either 2 or 3forklifts.
If there are a limited number of forklifts, then schedules where the number of required forklifts at any given time is over the limit is infeasible.
The Connected Range collector is useful when the Job will always require 1forklift, but cannot handle cases where each Job require a different number of forklifts.
Describe the solution you'd like
The connected ranges collector takes an optional weighting function parameter from range to int (defaulting to range -> 1).
For instance,
Is your feature request related to a problem? Please describe.
Sometimes a
Job
requires multiple of the same resource. For instance, aJob
might require either2
or3
forklifts
.If there are a limited number of
forklifts
, then schedules where the number of requiredforklifts
at any given time is over the limit is infeasible.The Connected Range collector is useful when the
Job
will always require1
forklift
, but cannot handle cases where eachJob
require a different number offorklifts
.Describe the solution you'd like
The connected ranges collector takes an optional weighting function parameter from
range
toint
(defaulting torange -> 1
).For instance,
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: