What is the best practice for solving VRPMT problem with optaplanner?
问题 Our current approach is running solver many times. I am wondering if there is a better approach. Some explanation: Vehicle Routing Problem with Multiple Trips (VRPMT): The vehicles can do more than one route. 回答1: Take the VRP example, rename Vehicle to VehiclePerDay , then introduce 2 fields on it: the vehicle and the LocalDate. This is presuming one trip per day. If you do multiple trips on the same day, there are 2 approaches: 1) Split Vehicle into VehicleTrip as above and have them point