Sab
- 合計アクティビティ 13
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 3
- サブスクリプション 4
コメント
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")