FRAMES NO FRAMES

Class IlcRevInt

Definition file: ilsolver/basic.h
Include file: <ilsolver/ilosolver.h>

IlcRevInt is a reversible version of the basic predefined Solver type, IlcInt. The reversible version makes it easier to restore a previous state. This class has a value data member corresponding to IlcInt. This value data member is automatically restored when Solver backtracks.

This class is not a handle class. Objects of this class should be used directly, that is, not through pointers to them. Do not create instances of IlcRevInt as automatic objects (that is, as objects allocated on the C++ stack). Do not pass them by value.

An object of the class IlcRevInt is automatically cast to the basic type IlcInt, if needed. Instances of this reversible class can be used as data members. However, do not use them as types for automatic variables, where “automatic” has its usual C++ meaning, as this practice would create memory-access errors. Do not pass them as arguments.

An instance of IlcRevInt behaves very much like an instance of IlcInt; the difference in their behavior has to do with assignments. Indeed, all reversible assignments are undone when Solver backtracks.

For more information, see the concepts State and Reversibility.

See Also:

Constructor Summary
public IlcRevInt(IloSolver solver, IlcInt initValue=0)
Method Summary
public IlcIntgetValue() const
public operator IlcInt() const
public voidsetValue(IloSolver solver, IlcInt value)
Constructor Detail

IlcRevInt

public IlcRevInt(IloSolver solver, IlcInt initValue=0)

The constructor creates a new object, an instance of IlcRevInt. It is more memory-efficient than the constructor without arguments.


Method Detail

getValue

public IlcInt getValue() const

This member function accesses the value of the instance of IlcRevInt.


operator IlcInt

public operator IlcInt() const

This operator returns the value of the instance of IlcRevInt. In other words, this operator automatically casts an instance of IlcRevInt into an instance of IlcInt.


setValue

public void setValue(IloSolver solver, IlcInt value)

This member function modifies the value of the invoking object by reversibly assigning value to it. When Solver backtracks, this reversible modification will be undone.