Model.cbGetNodeRel()

cbGetNodeRel ( vars )

Retrieve values from the node relaxation solution at the current node. Note that this method can only be invoked when the where value on the callback function is equal to GRB.Callback.MIPNODE, and GRB.Callback.MIPNODE_STATUS is equal to GRB.OPTIMAL (see the Callback Codes section for more information).

Arguments:

vars: The variables whose relaxation values are desired. Can be a list of variables or a single variable.

Return value:

The values of the specified variables in the node relaxation for the current node.

Example usage:

  def mycallback(model, where):
    if where == GRB.Callback.MIPNODE:
      print model.cbGetNodeRel(model._vars)

  model._vars = model.getVars()
  model.optimize(mycallback)