org.chocosolver.memory.trailing.StoredInt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of choco-solver Show documentation
Show all versions of choco-solver Show documentation
Open-source constraint solver.
/**
* This file is part of choco-solver, http://choco-solver.org/
*
* Copyright (c) 2018, IMT Atlantique. All rights reserved.
*
* Licensed under the BSD 4-clause license.
*
* See LICENSE file in the project root for full license information.
*/
package org.chocosolver.memory.trailing;
import org.chocosolver.memory.IStateInt;
import org.chocosolver.memory.trailing.trail.IStoredIntTrail;
/**
* A class implementing backtrackable int.
*/
public class StoredInt extends IStateInt {
protected final IStoredIntTrail myTrail;
/**
* Constructs a stored search with an initial value.
* Note: this constructor should not be used directly: one should instead
* use the IEnvironment factory
*/
public StoredInt(final EnvironmentTrailing env, final int i) {
super(env, i);
myTrail = env.getIntTrail();
if(env.fakeHistoryNeeded()){
myTrail.buildFakeHistory(this, i, timeStamp);
}
}
/**
* Modifies the value and stores if needed the former value on the
* trailing stack.
*/
@Override
public final void set(final int y) {
if (y != currentValue) {
final int wi = environment.getWorldIndex();
if (this.timeStamp < wi) {
myTrail.savePreviousState(this, currentValue, timeStamp);
timeStamp = wi;
}
currentValue = y;
}
}
}