我们正在为车队管理系统实施路线优化,我们有一个案例,在一个单一的工作,我们有一个皮卡和10个交货点。因此,对于这个解决方案,我们使用VRP多任务。
它在3个交货点之前可以正常工作,但当交货点超过3个时,就会出现一些错误
{
"title": "OpenApi validation error",
"status": 400,
"code": "E613000",
"cause": "[Path '\/plan\/jobs\/1\/tasks\/deliveries'] Array is too long: must have
at most 3 elements but instance has 4 elements",
"action": "Problem definition is not consistent with the specification. Please
correct problem and send it again.",
"correlationId": "15fd607c-b53c-42fa-8317-ef60fcc4bedd"
}
我们怎样才能解决这个问题?
发布于 2022-08-22 13:31:43
错误描述为所面临的问题提供了解决方案:每个作业的交付/拾取的最大值为3。API规范中提到的当前实现的限制:
解决这一问题的选择是将任务拆分为单独的作业。如果使用1辆汽车拾取作业,时间窗口可能比送货作业更早。KS
https://stackoverflow.com/questions/73441484
复制相似问题