Maryam Azani
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 8
Posts
Recent activity by Maryam Azani-
Replace automatic naming in model.addConstrs
AnsweredHi, I am trying to code the constraint names based on iterations and a condition which should replace the name automatically created by Gurobi. However, the naming does not replace the automatic na...
-
objective function with nested sum
Awaiting user inputI have an objective function with multiple operations for which I tried nesting with help of quicksum (below): X, I, Y, and B are model variables I have tried the following code which works but th...
-
conditional constraint in Gurobi
AnsweredI am trying to model a conditional constraint in Guuobi python: if a>= b then c == 1, otherwise c == 0 a and c are both model variables and c is binary [assume a = I, b = safetystock, and c = X] I ...