- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试解决车辆路线问题,其中每个客户都有多个位置,并且只需要访问其中一个位置。我获取了 optaplanner-master 并按以下方式修改了车辆路由示例:
客户.java:
/*
* Copyright 2012 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.optaplanner.examples.vehiclerouting.domain;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamInclude;
import org.optaplanner.core.api.domain.entity.PlanningEntity;
import org.optaplanner.core.api.domain.valuerange.CountableValueRange;
import org.optaplanner.core.api.domain.valuerange.ValueRangeFactory;
import org.optaplanner.core.api.domain.valuerange.ValueRangeProvider;
import org.optaplanner.core.api.domain.variable.AnchorShadowVariable;
import org.optaplanner.core.api.domain.variable.PlanningVariable;
import org.optaplanner.core.api.domain.variable.PlanningVariableGraphType;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import org.optaplanner.examples.vehiclerouting.domain.location.Location;
import org.optaplanner.examples.vehiclerouting.domain.solver.DepotAngleCustomerDifficultyWeightFactory;
import org.optaplanner.examples.vehiclerouting.domain.timewindowed.TimeWindowedCustomer;
import java.util.List;
@PlanningEntity(difficultyWeightFactoryClass = DepotAngleCustomerDifficultyWeightFactory.class)
@XStreamAlias("VrpCustomer")
@XStreamInclude({
TimeWindowedCustomer.class
})
public class Customer extends AbstractPersistable implements Standstill {
protected int demand;
// Planning variables: changes during planning, between score calculations.
protected Standstill previousStandstill;
// Shadow variables
protected Customer nextCustomer;
protected Vehicle vehicle;
protected List<Location> locations;
protected Integer selectedLocation = 0;
public void setSelectedLocation(Integer selectedLocation){
this.selectedLocation = selectedLocation;
}
@PlanningVariable(valueRangeProviderRefs = {"selectedLocation"})
public Integer getSelectedLocation(){
return selectedLocation;
}
@ValueRangeProvider(id = "selectedLocation")
public CountableValueRange<Integer> getSelectableLocations(){
return ValueRangeFactory.createIntValueRange(0, locations.size());
}
public void setLocations(List<Location> locations) {
this.locations = locations;
}
public List<Location> getLocations(){
return locations;
}
@Override
public Location getLocation() {
return locations.get(selectedLocation);
}
@Override
public String toString() {
return "Customer " + getId();
}
public int getDemand() {
return demand;
}
public void setDemand(int demand) {
this.demand = demand;
}
@PlanningVariable(valueRangeProviderRefs = {"vehicleRange", "customerRange"},
graphType = PlanningVariableGraphType.CHAINED)
public Standstill getPreviousStandstill() {
return previousStandstill;
}
public void setPreviousStandstill(Standstill previousStandstill) {
this.previousStandstill = previousStandstill;
}
@Override
public Customer getNextCustomer() {
return nextCustomer;
}
@Override
public void setNextCustomer(Customer nextCustomer) {
this.nextCustomer = nextCustomer;
}
@Override
@AnchorShadowVariable(sourceVariableName = "previousStandstill")
public Vehicle getVehicle() {
return vehicle;
}
public void setVehicle(Vehicle vehicle) {
this.vehicle = vehicle;
}
// ************************************************************************
// Complex methods
// ************************************************************************
/**
* @return a positive number, the distance multiplied by 1000 to avoid floating point arithmetic rounding errors
*/
public long getDistanceFromPreviousStandstill() {
if (previousStandstill == null) {
throw new IllegalStateException("This method must not be called when the previousStandstill ("
+ previousStandstill + ") is not initialized yet.");
}
return getDistanceFrom(previousStandstill);
}
/**
* @param standstill never null
* @return a positive number, the distance multiplied by 1000 to avoid floating point arithmetic rounding errors
*/
public long getDistanceFrom(Standstill standstill) {
return standstill.getLocation().getDistanceTo(getLocation());
}
/**
* @param standstill never null
* @return a positive number, the distance multiplied by 1000 to avoid floating point arithmetic rounding errors
*/
public long getDistanceTo(Standstill standstill) {
return getLocation().getDistanceTo(standstill.getLocation());
}
}
在VehicleRoutingImporter.java中,读取客户位置的代码已更改为:
List<Location> locations = new ArrayList<>(lineTokens.length-2);
for (int j = 2; j < lineTokens.length; ++j){
long locationId = Long.parseLong(lineTokens[j]);
Location location = locationMap.get(locationId);
if (location == null)
throw new IllegalArgumentException("Missing location (id=" + locationId + ") specified for customer id=" + id);
locations.add(location)
}
customer.setLocations(locations);
过去调用 Customer.setLocation(location) 的所有其他代码现在都调用 Customer.setLocations(Collections.singletonList(location))。我认为实际上没有任何一个被调用。
在vehicleRoutingSolverConfig.xml中,我删除了这些行(否则,它会提示多个变量):
<subChainChangeMoveSelector>
<selectReversingMoveToo>true</selectReversingMoveToo>
</subChainChangeMoveSelector>
<subChainSwapMoveSelector>
<selectReversingMoveToo>true</selectReversingMoveToo>
</subChainSwapMoveSelector>
tutorial-01-uncapacitated.vrp 现在是:
NAME : tutorial-01-uncapacitated
COMMENT : Geoffrey De Smet - OptaPlanner VRP demo 01
TYPE : CVRP
DIMENSION : 8
EDGE_WEIGHT_TYPE : EUC_2D
CAPACITY : 100
NODE_COORD_SECTION
1 50 50
2 45 100
3 30 80
4 70 85
5 60 60
6 35 10
7 30 30
8 45 20
DEMAND_SECTION
1 0
2 1 2 3
3 1 3 4
4 1 4 5
5 1 5 6
6 1 6 7
7 1 7 8
8 1 8 2
DEPOT_SECTION
1
-1
VEHICLES : 2
EOF
它似乎有效,并在小型测试用例中找到了最佳解决方案(并且在大型用例中看起来像是合理的解决方案)。但是,当我设置 FAST_ASSERT 模式时,它失败并出现以下错误:
Caused by: java.lang.IllegalStateException: Impossible VariableListener corruption: the expectedWorkingScore (0hard/-30000soft) is not the workingScore (0hard/-34142soft) after all VariableListeners were triggered without changes to the genuine variables. But all the shadow variable values are still the same, so this is impossible.
最佳答案
启用 FULL_ASSERT
而不是 FAST_ASSERT
可以更快地指出真正的问题。请参阅the PR comment这解释了如何帮助检测问题。
关于optaplanner - 每个客户具有多个位置的车辆路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45781212/
我看了用户指南http://docs.jboss.org/optaplanner/release/6.1.0.Final/optaplanner-docs/html_single/index.html
您好,我想问在为我试图解决的问题设计领域时应采取什么方法,正如我在示例中看到的,设计往往类似于实体关系模型,例如多对多通过在两个实体之间放置关联实体来解决关系。我的问题是为什么会这样,这对性能有帮助吗
我们正在使用 optaplanner 来尝试使用时间窗口改进我们当前的车辆路线。我们有一些小问题,我们不确定如何克服: 我们的司机需要有 30 分钟的午休时间,在他们轮类的第 3 到第 5 个小时之间
我们在使用 Optaplanner 时遇到了一个难题。我们正在开展一个项目,我们需要计算优化的车辆路线,该路线考虑到客户希望获得服务的特定时间。 我们已经能够创建一个 vrp 文件,就像 Optapl
我有一个与 OptaPlanner 求解器相关的问题。是否可以计算求解器在运行时评估的解决方案总数?我指的是解决方案本身,而不是它们的分数。 最佳答案 评估解决方案的数量大致等于InnerScoreD
我有一个基于OptaPlanner 8.22.1的排课应用程序。。升级到TimeFold1.1.0后,性能测试用例的执行时间增加了大约100%。应用程序代码相同,只是更改为指向TimeFold库。JD
我有一个 OptaPlanner 项目,它有一个分阶段配置的求解器,如下所示: ... FIRST_FIT
我是 optaplanner 的新手,现在我专注于尝试了解项目作业调度。我尝试使用 optaplanner 手册中的示例数据运行此示例,如下图所示: 我对这个例子中的域类有一些疑问: GlobalRe
我想就本地搜索中移动选择器的数量发表意见。在大多数用例中,添加新的移动选择器(具有给定的移动类型)是否比消极的更积极。这意味着它是否有助于算法更快地摆脱局部最优,或者它是否会因具有额外的移动类型而更多
我正在尝试解决车辆路线问题,其中每个客户都有多个位置,并且只需要访问其中一个位置。我获取了 optaplanner-master 并按以下方式修改了车辆路由示例: 客户.java: /* * Cop
我是 optaplanner 的新手。我正在使用 6.2。我即将编写我的第一个分数计算器。我正在阅读关于 Java 的文档抽象增量分数计算器是否有任何其他文档详细说明框架如何/为什么以及何时调用接口(
目前可用的两个选项 (6.3.0.Final) 似乎是将值范围定义为 Collection 或 ValueRange(由边界定义)。对于由 Java 对象表示的每个变量,我的领域都有大量潜在值(不计算
我们使用 optaplanner-core 并在 Drools 文件中定义规则,使用 Java 11 开发了一个 SpringBoot 项目。使用 JDK 在 intelliJ 中运行应用程序没有问题
我正在阅读文档中相互矛盾的内容。 一方面,这段话似乎表明连续规划变量是可能的: A planning value range is the set of possible planning value
我们的规则文件中有以下规则,我试图理解规则的 LHS 部分,有两行 RoomAssignment 和 Schedule。有人可以解释它是如何评估的吗? RoomAssignment 和 Schedul
下载了 OptaPlanner 示例并进行测试。在提供的 session 安排示例中,已解决的解决方案中返回单个计划变量。例如,对于 session 安排,返回一个房间。如果位置不同,我计划为单个 s
我正在尝试使用 OptaPlanner 实现以下场景的解决方案: 我们想从 A 点到达 B 点 我们可以采用一组有限的边(我们的事实;每条边都有出发地和目的地) 我们希望找到从 A 到 B 的最佳边连
Optaplanner 允许影子变量有多个来源 (sources = {}) 但只有一个变量 ListsnerClass。在我的实现中,我有一个带有影子变量的规划实体,应该能够由两个列表者更改,但这似
正如我从文档中了解到的那样,“MoveIteratorFactory”的目的是生成每一步都需要执行的 Action 。 “getSize”方法的移动子集有多大? “createOriginalMove
最近,我将 OptaPlanner 依赖项添加到我的 build.gradle 中,以便使用库的车辆路由问题。当我尝试使用求解器时,收到以下错误 java.lang.NoSuchMethodError
我是一名优秀的程序员,十分优秀!