org.chocosolver.memory.IStateDouble 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) 2023, 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;
/**
* An abstract class for backtrackable double.
*
*
* @author Charles Prud'homme
* @since 29/04/13
*/
public abstract class IStateDouble {
protected final IEnvironment environment;
protected double currentValue;
protected int timeStamp;
public IStateDouble(IEnvironment env, double i) {
environment = env;
currentValue = i;
timeStamp = -1;
}
/**
* Returns the current value.
*/
public final double get() {
return currentValue;
}
/**
* Modifies the value and stores if needed the former value on the
* trailing stack.
*/
public abstract void set(double y);
/**
* Modifies the value without storing the former value on the trailing stack.
*
* @param y the new value
* @param wstamp the stamp of the world in which the update is performed
*/
public void _set(final double y, final int wstamp) {
currentValue = y;
timeStamp = wstamp;
}
public void overrideTimeStamp(int aTimeStamp) {
this.timeStamp = aTimeStamp;
}
@Override
public String toString() {
return String.valueOf(currentValue);
}
}