jingwei xie
- 合計アクティビティ 8
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 2
- サブスクリプション 2
投稿
jingwei xieによる最近のアクティビティ-
The index() function doesn't work well with gurobi variable
回答済みI write a demo for the situation: import gurobipy as gpfrom gurobipy import GRBm = gp.Model()x = m.addVars(2, 3)m.update()L = [x[i, j] for i in range(2) for j in range(3)]print(L.index(x[0, 1])) ...