Kuifje02 / vrpy

A python framework for solving the VRP and its variants with column generation.
MIT License
173 stars 42 forks source link

How to display real vehicle start time? #141

Closed qiniuweihe closed 1 year ago

qiniuweihe commented 1 year ago

As above title, How can I display it?

Kuifje02 commented 1 year ago

Objects vrpy.VehicleRoutingProblem have the attribute departure_time which should display what you want. So if you named your vehicle problem prob, you can call this attribute with prob.departure_time. This is described in the docs here.