hongyan liu

  • Gurobi-versary
  • First Comment
  • First Question
  • 合計アクティビティ 4
  • 前回のアクティビティ
  • メンバー登録日
  • フォロー 0ユーザー
  • フォロワー 0ユーザー
  • 投票 1
  • サブスクリプション 1

投稿

hongyan liuによる最近のアクティビティ 最近のアクティビティ 投票
  • Some problem about adding indicator constraints

    回答済み

    I want to add constraints as below: if dep[i][j] == 1 then z[0, j] < z[0, i]  0<i<4,i<j<4 I write these codes : m.addConstrs((dep[i][j] == 1) >> (z[0, j] < z[0, i]) for i in range(tab_cnt - 1) for...