Rayan SAAD

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

投稿

Rayan SAADによる最近のアクティビティ 最近のアクティビティ 投票
  • Constraint expression

    回答済み

    Helloo, I have a probleme and i would like some help, i want to establish different constraint for my variable S[i,c,j,t] depending on j, So i defined different J like this : J1=range(6,11)J21=rang...

  • Modèle solved with a 0 Objective function

    進行中

    Hello, i have a problem and i would like some help, The résolution of mu model comes with a 0 objectife function like you can see, So i dont know how is it possible, and what does it mean  Thanks a...

  • Constraint with for loop

    回答済み

    Hello, I have a lillte probleme and would appreciate your help, I created a variable X[i,j] I want to add constraints on X dependently of i, for example if i equal to 2,3,4 i have a constraint  and...

  • Minimum RAM needed

    回答済み

    Hello, i have a problem and i would appreciate your Help, I've built a fairly heavy optimization model, tested it on simple problems and it works,But when I put in the real data (go from 5 products...

  • TimeLimit

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

    Hello,  i set a time limit of 5 minutes  for my modèle, but when the 3 minutes are over, i still dont have the solution, Thank you 

  • Model infeasible

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

    Hello,  I want to model a stock management problem, I have 3 variables : P[i,t] : Production of product i in period t X[i,j,t] : Amount of product i in location j in period t ( each location j has ...

  • index constraint

    回答済み

    Helloo, I have 2 binary variables Z[i,j,e] and u[i,j,e], I want to express this constraint : Z[i,j]+u[i,j] <= 1 (regardless of e) I dont know how to express it in Gurobipy, Thank you !!

  • If Constraint

    回答済み

    Helloo, I have 2 binary variables h[i,j,t] and u[i,j,t] and  I need to express this constraint in my model: if for a given i : u[i,j,t]=1 then for all other i, h[i,j,t]=0, the solution i found is :...

  • Constraint has no Bool Value

    回答済み

    I get the following error for this constraint : for i in range(I): for k in range(K): for t in range(T):             model.addConstr(Tr[i,k,t]==0 or Tr[i,k,t]==9 or Tr[i,k,t]==10 or Tr[i,...

  • Variable constraint

    回答済み

    Helloo, i add a constarint on my variable X[i,j,t] like  X[i,j,t] <= 13 But after resolving the model i found that X[0,2,1]=16 I dont where is the mistake; Thank youu