I am trying to add a piecewise function to my objective function in Gurobi and am not sure if I need to manually assign it or if Gurobi will figure it out.
I have added this piecewise function in Gurobi uusing this code that I got from this source https://support.gurobi.com/hc/en-us/community/posts/4408013572497-Piecewise-Objective-function-and-Piecewise-constraints-:
m = gp.Model("test")
quantity = m.addVar(lb=5, ub=100, vtype=GRB.INTEGER, name="quantity")
cost = m.addVar(lb=0.5, ub=2, vtype=GRB.CONTINUOUS, name="cost")
m.addGenConstrPWL(quantity, cost, [1000, 4800, 4800.01, 15000, 1500.01, 30000], [5.2, 5.2, 5, 5, 4.6, 4.6])
I am wondering how I fit this into the objective function, can I store it as a variable and add it? Will it automatically be added when I add the objective function after? This is my first time using Gurobi.
Use gurobipy.Model.setPWLObj() to set a piecewise linear objective function. Here is one way to code your example: