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
{{ message }}
This repository was archived by the owner on Mar 6, 2023. It is now read-only.
shipment_capacity_consumption::Vector{Float64}# can include several independant capacity consumptions: as weight, value, volume
Since product_quantity is now a range, how can we know in advance the capacity consumption?
A solution (that augments the complexity of DS) is to define in product a tuple (step, cons) where consumption means the marginal capacity that product consumes when passing from step k to k+1. step is a quantity of product.
RichVehicleRoutingProblem.jl/src/RVRP_data.jl
Line 56 in 676246a
Since
product_quantityis now a range, how can we know in advance the capacity consumption?A solution (that augments the complexity of DS) is to define in
producta tuple(step, cons)where consumption means the marginal capacity that product consumes when passing from step k to k+1.stepis a quantity of product.