VariableInstance

public class VariableInstance extends Instance<Variable>

A decision variable instance. Each member of this class belongs to a single Variable. Note that accessors available here are replicated at Variable level for ease of use when dealing with scalar variables.

All AMPL suffixes for an algebraic variable are available through methods with the same name in this class. See http://www.ampl.com/NEW/suffbuiltin.html for a list of the available suffixes.

All the accessors in this class throw a IllegalStateException if the instance has been deleted in the underlying AMPL interpreter.

Constructors

VariableInstance

VariableInstance(Variable map, Object key)

Constructs a new variable with the lower bound, upper bound and value equal to the specified value. Initial guess is set to zero. Note that this method doesn’t add the variable to the entity.

Methods

astatus

public String astatus()

Get the AMPL status (fixed, presolved, or substituted out)

copyFrom

void copyFrom(Instance<?> from)

defeqn

public int defeqn()

Get the index in _con of “defining constraint” used to substitute variable out

dual

public double dual()

Get the dual value on defining constraint of variable substituted out

fix

public void fix()

Fix this variable instance to its current value

fix

public void fix(double value)

Fix this variable instance to the specified value

init

public double init()

Get the current initial guess

init0

public double init0()

Get the original initial guess (set by := or default or by a data statement)

lb

public double lb()

Returns the current lower bound. See Note on variables suffixes.

lb0

public double lb0()

Returns the initial lower bounds, from the var declaration

lb1

public double lb1()

Returns the weaker lower bound from AMPL’s presolve phase

lb2

public double lb2()

Returns the stronger lower bound from AMPL’s presolve phase

lrc

public double lrc()

Returns the reduced cost at lower bound

lslack

public double lslack()

Return the slack at lower bound (val - lb). See Note on variables suffixes.

name

public String name()

Returns the variable name with possible subscripts as printed by the display statement.

rc

public double rc()

Get the reduced cost (at the nearer bound)

setValue

public void setValue(double value)

Set the current value of this variable instance (does not fix it), equivalent to the AMPL command let

Parameters:
  • value – Value to be set

slack

public double slack()

Returns the bound slack which is the lesser of lslack and uslack. See Note on variables suffixes.

sstatus

public String sstatus()

Solver status (basis status of variable)

status

public String status()

AMPL status if not in, otherwise solver status

toString

public String toString()

Returns a string representation of this VariableInstance object. The format is as follows:

'var' name attrs ';'

where name is the string returned by the VariableInstance.name() method and attrs represent attributes similar to those used in variable declarations.

If the lower bound (lb) is equal to the upper bound (ub), the attributes contain '=' lb.

If the lower bound is not equal to the upper bound and Double.NEGATIVE_INFINITY , the attributes contain '>=' lb.

If the upper bound is not equal to the lower bound and Double.POSITIVE_INFINITY, the attributes contain '<=' ub.

If the variable is integer, the attributes contain 'integer'.

If the variable is binary, the attributes contain 'binary'.

ub

public double ub()

Returns the current upper bound. See Note on variables suffixes.

ub0

public double ub0()

Returns the initial upper bound, from the var declaration

ub1

public double ub1()

Returns the weaker upper bound from AMPL’s presolve phase

ub2

public double ub2()

Returns the stronger upper bound from AMPL’s presolve phase

unfix

public void unfix()

Unfix this variable instance

urc

public double urc()

Returns the reduced cost at upper bound

uslack

public double uslack()

Return the slack at upper bound (ub - val). See Note on variables suffixes.

value

public double value()

Get the current value of this variable instance