Maryam Azani

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

アクティビティの概要

Maryam Azaniさんの最近のアクティビティ
  • Maryam Azaniさんがコメントを作成しました:

    Thanks, something was wrong with my constraint condition. The name pattern was subscripted correctly.

  • Maryam Azaniさんがコメントを作成しました:

    Hi Maliheh,   The issue is that the name pattern is subscripted without considering the if condition in my constraint. I need the name to follow the same conditions as in my constraint (if month >=...

  • Maryam Azaniさんが投稿を作成しました:

    Replace automatic naming in model.addConstrs

    回答済み

    Hi, 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...

  • Maryam Azaniさんが投稿を作成しました:

    objective function with nested sum

    ユーザーの入力を待っています。

    I 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...

  • Maryam Azaniさんがコメントを作成しました:

    Thanks, this works.

  • Maryam Azaniさんがコメントを作成しました:

    Hi, I have the same problem but the logic is a bit different. I want to model: if I - safety stock >= 0 then X = 1; otherwise X = 0   I have the code as follows but I am not sure if this is correct...

  • Maryam Azaniさんが投稿を作成しました:

    conditional constraint in Gurobi

    回答済み

    I 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 ...