All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.constraints.extra.AbstractReversible Maven / Gradle / Ivy

Go to download

JCP Standard JSR331 “Java Constraint Programming API”. It is used for Modeling and Solving Constraint Satisfaction and Optimization Problems using Java and off-the-shelf Constraint/Linear Solvers

There is a newer version: 2.3.1
Show newest version
//=============================================
// J A V A  C O M M U N I T Y  P R O C E S S
// 
// J S R  3 3 1
// 
// Common Implementation
// 
//============================================= 
package javax.constraints.extra;

import javax.constraints.Problem;
import javax.constraints.impl.CommonBase;

/**
 * This class implements reversible integers that
 * automatically restore their values when a solver backtracks.
 *
 */

abstract public class AbstractReversible extends CommonBase implements javax.constraints.extra.Reversible  {
	
	public AbstractReversible(Problem problem, int value) {
		this(problem,"",value);
	}
	
	public AbstractReversible(Problem problem, String name, int value) {
		super(problem,name);
	}
	
	abstract public int getValue();
	
	abstract public void setValue(int value);
	
	public String toString() {
		return getName()+"["+getValue()+"]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy