
Sab
- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 4
Comments
Recent activity by Sab-
Thank you for you help! I tried using the same idea the following way: from gurobipy import * I = ["1", "5", "4", "9", "6", "8", "2", "3", "7"] Z = [(i, j) for i in I for j in I if i < j]R = [(i, ...
-
Thank you for your answer! If I wanted to use min_() would it work this way? for i in I: for ii in I: k = model.addConstr(E[i, ii] == min_(x[i], x[ii]), name="k")