Model.getPWLObj()

getPWLObj ( var )

Retrieve the piecewise-linear objective function for a variable. The function returns a list of tuples, where each provides the <span>$</span>x<span>$</span> and <span>$</span>y<span>$</span> coordinates for the points that define the piecewise-linear objective function.

Refer to this discussion for additional information on what the values in <span>$</span>x<span>$</span> and <span>$</span>y<span>$</span> mean.

Arguments:

var: A Var object that gives the variable whose objective function is being retrieved.

Return value:

The points that define the piecewise-linear objective function.

Example usage:

  > print(model.getPWLObj(var))
  [(1, 1), (2, 2), (3, 4)]