Jsprit输出和保存变量

Jsprit outputing and Saving variables

除了使用 vrpxmlwriter 将解决方案输出到 xml 文件之外,有没有办法获得变量中的 output/store 结果?

我尝试使用 dom 解析器、xpath 和系列来获得结果,可以自豪地说我搞得一团糟!!普通的 Jsprit 团队,你们制作了这件美丽的艺术品,你们为什么不能为我们提供像 bestSolution.getAllVehicles() 这样的功能??

如有错误请指正。

仅从源代码来看,你不应该能够轻松地从 bestSolution 实例中提取所有车辆吗?

假设 bestSolutionVehicleRoutingProblemSolution 类型,我希望这样的东西可以工作:

Collection<VehicleRoute> routes = bestSolution.getRoutes();
Set<Vehicle> allVehicles = routes
    .stream()
    .map(VehicleRoute::getVehicle)
    .collect(Collectors::toSet());

似乎 VehicleRoutingProblemSolution 包含很多信息,您对其中的特定 projection/subset 感兴趣。由于显然有很多这样的子集,我认为 API 不提供所有这些子集是很合理的。