GRBVar#

GRBVar#

Gurobi variable object. Variables are always associated with a particular model. You create a variable object by adding a variable to a model (using GRBModel.addVar), rather than by using a GRBVar constructor.

The methods on variable objects are used to get and set variable attributes. For example, solution information can be queried by calling get (GRB.DoubleAttr.X). Note, however, that it is generally more efficient to query attributes for a set of variables at once. This is done using the attribute query method on the GRBModel object (GRBModel.get).

char get(GRB.CharAttr attr)#

Query the value of a char-valued attribute.

Arguments:

attr – The attribute being queried.

Return value:

The current value of the requested attribute.

Example:
// Get VType value
char vtype = var.get(GRB.CharAttr.VType);
double get(GRB.DoubleAttr attr)#

Query the value of a double-valued attribute.

Arguments:

attr – The attribute being queried.

Return value:

The current value of the requested attribute.

Example:
// Get lower bound value
double lb = var.get(GRB.DoubleAttr.LB);
int get(GRB.IntAttr attr)#

Query the value of an int-valued attribute.

Arguments:

attr – The attribute being queried.

Return value:

The current value of the requested attribute.

Example:
// Get VBasis value
int vbasis = var.get(GRB.IntAttr.VBasis);
String get(GRB.StringAttr attr)#

Query the value of a string-valued attribute.

Arguments:

attr – The attribute being queried.

Return value:

The current value of the requested attribute.

Example:
// Get variable name
String name = var.get(GRB.StringAttr.VarName);
int index()#

This method returns the current index, or order, of the variable in the underlying constraint matrix.

Note that the index of a variable may change after subsequent model modifications.

Return value:

-2: removed, -1: not in model, otherwise: index of the variable in the model

Example:
// Get variable index
int index = var.index();
boolean sameAs(GRBVar otherVar)#

Check whether two variable objects refer to the same variable.

Arguments:

otherVar – The other variable.

Return value:

Boolean result indicates whether the two variable objects refer to the same model variable.

Example:
// Compare to a second variable
boolean isSame = var.sameAs(var2);
void set(GRB.CharAttr attr, char newval)#

Set the value of a char-valued attribute.

Arguments:
  • attr – The attribute being modified.

  • newval – The desired new value of the attribute.

Example:
// Set VType value
var.set(GRB.CharAttr.VType, 'B');
void set(GRB.DoubleAttr attr, double newval)#

Set the value of a double-valued attribute.

Arguments:
  • attr – The attribute being modified.

  • newval – The desired new value of the attribute.

Example:
// Set lower bound value
var.set(GRB.DoubleAttr.LB, 0.1);
void set(GRB.IntAttr attr, int newval)#

Set the value of an int-valued attribute.

Arguments:
  • attr – The attribute being modified.

  • newval – The desired new value of the attribute.

Example:
// Set VBasis value
var.set(GRB.IntAttr.VBasis, -1);
void set(GRB.StringAttr attr, String newval)#

Set the value of a string-valued attribute.

Arguments:
  • attr – The attribute being modified.

  • newval – The desired new value of the attribute.

Example:
// Set variable name
var.set(GRB.StringAttr.VarName, "newName");