ghada ouerfelli
- Total activity 17
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
Posts
Recent activity by ghada ouerfelli-
result not correct
Answeredfrom gurobipy import *#input dataa=[5 ,6 ,4 ,6 ,7]#k=['1','2','3'] # binsC=20 # capacity of bin#key parametersN=range(len(a))M=range(len(k))#create a modelm=Model('Bin packing')# create variablesx=...
-
Error with lists
Answeredimport numpy as npimport pandas as p# Parameters and Dataproducts=["prod1","prod2","prod3","prod4"] # number of productsmonths=["Jan","Fev","Mar","Apr","May"] #number of periodeDem_client={ "Jan...
-
Erreur in my code with gurobipy
Answeredhello I need you help to correct my code import gurobipy as gpfrom gurobipy import GRBmonths = range(5)products=range(4)L=100Dem_client=[[0,0,10,0,0],[0,20,0,0,0],[0,0,0,0,15],[0,10,0,0,25]]Cout_s...