gpt4 book ai didi

Java:值在不应该更新的时候更新

转载 作者:行者123 更新时间:2023-12-01 19:23:38 24 4
gpt4 key购买 nike

基本上,我正在尝试为多维背包问题创建模拟退火的实现。我在让系统决定是否接受较低值的状态时遇到问题。退火是用这个函数控制的:

while (this.temp > 0)
{
System.out.println("Temperature: "+this.temp);
System.out.println("Current bag: "+bagString(currentBag)+" (Value "+problem.getValue(currentBag)+")");
next = getNext();
System.out.println("Next bag: "+bagString(next)+" (Value "+problem.getValue(next)+")");
if (acceptNext(next))
{
System.out.println("Accepted");
this.currentBag = next;
} else {
System.out.println("Not accepted");
}
this.temp -= this.delta;
}

acceptNext()函数决定是否接受下一个状态,定义如下:

public boolean acceptNext(ArrayList<Boolean> next)
{
if (problem.getValue(next) > problem.getValue(this.currentBag))
{
return true;
} else {
int loss = (problem.getValue(this.currentBag) - problem.getValue(next));
double prob = Math.exp(loss/this.temp);
Random generator = new Random();
double selection = generator.nextDouble();
System.out.println("Prob: "+prob+", random number: "+selection);
if (selection < prob) {
return true;
}
return false;
}
}

经过一些测试,我发现在调用acceptNext()函数之前,currentBag字段被分配给下一个值。我在任何代码中都找不到另一个“this.currentBag = next”。为了完整起见,这里是 getNext() 函数:

public ArrayList<Boolean> getNext()
{
Random generator = new Random();
boolean valid = false;
ArrayList<Boolean> next = new ArrayList<Boolean>();
int j;
while (!valid)
{
next = this.currentBag;
j = generator.nextInt(problem.getNumObjects());
if (next.get(j) == true)
{
next.set(j, false);
} else {
next.set(j, true);
}
if (problem.isValid(next))
{
valid = true;
}
}
return next;
}

我看不出是什么导致了这个值的更新。有人看到代码中的任何内容吗?

谢谢

最佳答案

执行此操作时,next 指向与当前包相同的内容,因此对 next 的所有更改都会反射(reflect)在 currentBag 中。在您的 getNext() 方法中:

while (!valid)
{
next = this.currentBag;
...
}

试试这个:

while (!valid)
{
next = new ArrayList<Boolean>(this.currentBag);
...
}

关于Java:值在不应该更新的时候更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2607800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com