ghada ouerfelli

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

アクティビティの概要

ghada ouerfelliさんの最近のアクティビティ
  • ghada ouerfelliさんが投稿を作成しました:

    Range constraint requires two values

    回答済み

    Hello when I read my data from Excel and rewrite them to list , pandas makes them like this : I1=[[3], [4]] but I wanna them like this I1=[3, 4] to eliminate this error  What should I do to elimina...

  • ghada ouerfelliさんが投稿を作成しました:

    Help in pandas-gurobipy

    回答済み

    any help please  Hello, the problem in my model is how to convert the database  S1 and S2 of week zero into   S1[1,0].ub and S1[2,0].lb , the same for S2 , I sent the excel files by email  S1 and S...

  • ghada ouerfelliさんがコメントを作成しました:

    Hello, the problem in my model is how to convert the database  S1 and S2 of week zero into   S1[1,0].ub and S1[2,0].lb , the same for S2 , I sent the excel files by email  S1 and S2 are variables f...

  • ghada ouerfelliさんがコメントを作成しました:

    hello by Initial stock I wanna say the S1 in my week zero , it is my initial stock , like this but i have a lot of products that is why I need an excel database  S1[1,0].lb=1S1[1,0].ub=1S1[2,0].lb=...

  • ghada ouerfelliさんが投稿を作成しました:

    Help in gurobipy

    進行中

    hello I wanna get my database a and l from excel like this table: S1 and S2 :       import gurobipy as gpimport pandas as pdimport numpy as npfrom gurobipy import GRB#Read Purchase Order from Exc...

  • ghada ouerfelliさんが投稿を作成しました:

    result not correct

    回答済み

    hello when I change my database a,l,S1 and S2 get it from excel some thing happen  my excel database a and l are like this table and S1 , S2 are like this table  import gurobipy as gpimport panda...

  • ghada ouerfelliさんが投稿を作成しました:

    result not correct

    回答済み

    hello when I Change my database the result is 0, I want to read my database a,l, my initial stocks S1 and S2 From excel, I made them in lists but there are some errors that make the result 0 here t...

  • ghada ouerfelliさんがコメントを作成しました:

    Thanks a lot for your support 

  • ghada ouerfelliさんがコメントを作成しました:

    Sorry but I still have the same problem import gurobipy as gpfrom gurobipy import GRBm=gp.Model("Log")weeks = [0,1,2,3,4]products=[1,2]L=10k=2a=[[0,0,10,0,0],[0,20,0,0,0],]l=[[0,2,3,1,2], [...

  • ghada ouerfelliさんがコメントを作成しました:

     File "C:\Users\Ghada\PycharmProjects\Logistika Program\Logistika Program.py", line 55, in <genexpr>    m.addConstrs(S[p,weeks[weeks.index(t)-1]]+a[p][t] == l[p][t]+S[p][t] for p in products for t ...