1

我尝试使用 jsprit 来解决具有多个TimeWindows. 因此,我创建了一个新的约束类,其中包含一个将“TimeWindowsNotAvailable”类与服务相关联的映射。

“TimeWindowsNotAvailable”类包含TimeWindows无法完成服务的列表(例如,客户不在家等)。主要问题是newAct.getArrTime()始终为 0.0,尽管您可以在 VRP 的解决方案中看到arrTime不是 0.0。

有没有人知道我如何解决这个问题或者TimeWindows更难实现?

public class TimeConstraint implements HardActivityStateLevelConstraint {

    private Map<Service, TimeWindowsNotAvailable> notAvailableMap;

    private RouteAndActivityStateGetter states;

    private VehicleRoutingTransportCosts routingCosts;

    public TimeConstraint() {
        super();
    }

    public boolean checkDepTime(Service service, Double depTime){
        TimeWindowsNotAvailable timeWindowsNotAvailable = notAvailableMap.get(service);
        if(timeWindowsNotAvailable == null) return true;
        System.out.println(depTime);
        return timeWindowsNotAvailable.isAvailable(depTime);
    }

    public void setNotAvailableMap(Map<Service, TimeWindowsNotAvailable> notAvailableMap){
        this.notAvailableMap = notAvailableMap;
    }

    @Override
    public ConstraintsStatus fulfilled(JobInsertionContext iFacts, TourActivity prevAct, TourActivity newAct, TourActivity nextAct, double prevActDepTime) {
        Service currentService = (Service)iFacts.getJob();
        if(checkDepTime(currentService, **newAct.getArrTime()**)) return ConstraintsStatus.FULFILLED;
        return ConstraintsStatus.NOT_FULFILLED;
    }
}
4

1 回答 1

1

您还不能开箱即用地模拟多个时间窗口,但它将被实施。目前,您可以实现自己的。例如,假设您有以下两个服务时间窗口:(e1,l1), (e2,l2) 其中 e 表示最早的操作开始,l 表示最晚。如果 l1 < e2,则比较“容易”实现。看看我是如何实现单个硬时间窗口的。看看哪个是TimeWindowConstraint哪个是实用的时间窗口状态更新器。您可能只需要对这些类进行少量修改,因此只需复制它们并添加多个时间窗口,然后将这两个新类添加到您的 State- 和 ConstraintManager(不要忘记停用默认时间窗口约束/stateUpdater)。

newAct 没有任何 arrTime,因为它还没有插入到路由中,并且最佳插入位置仍有待确定(通过检查约束和计算边际插入成本)。但是你可以很容易地计算如下:

double newActArrTime = prevActDepTime + routingCosts.getTransportTime(prevAct.getLocationId(), newAct.getLocationId(), prevActDepTime,iFacts.getNewDriver(),iFacts.getNewVehicle);
于 2014-09-05T06:46:25.930 回答