Margi Shah
- 合計アクティビティ 179
- 前回のアクティビティ
- メンバー登録日
- フォロー 1ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 11
コメント
Margi Shahによる最近のアクティビティ-
Hi Jaromil, Thanks for the information. I searched all necessary information from the Gurobi website that what necessary attributes I require. I am taking this: portfolio.py (gurobi.com) as a refer...
-
Hi Jaromil, Many thanks for informing me. "Do you mean that you want to extract the information of each log line? Or do you want to just have the final information about objective value, time need...
-
Hi Jaromil, May I ask how much time it took on your machine? "You should now use the solution point values and check whether they make sense for your application." Yes, you are right, I will do tha...
-
Hi Jaromil, I ran the model, fortunately it was feasible. But I just have one confusion with one of the constraints named as Transfer task in which we used binary variables to see which task is tak...
-
Hi Jaromil, You are truly an inspiration. I hope this works, I will implement & let you know. -Best Regards, Margi
-
Hi Jaromil, So, the Resource Variable Dictionary will look like: Resources = {}for res in res_list1: for t in time: if t == 0: if 1 <= res and res <= 3: Resources[res,t] = steel.add...
-
Hi Jaromil, I need not need to access any resource value (from 6 to 173) at time step = 0. So, Shall I do this? Resources = {}for res in res_list1: for t in time: if t == 0: if 1 <= res an...
-
Hi Jaromil, 1."You can just ignore them if you are not interested in their final values". y={}for res_cat, resources in res_cat2idx.items(): if 'H_A_S' not in res_cat or 'H_A_S4' in res_cat:...
-
Hi Jaromil, 1. "The issue is now that you defined variables Resource[res,0] but you don't want to have them as optimization variables, is this correct?" - Yes, Jaromil, 100 % correct. I do not inte...
-
Hi Jaromil, Many thanks for motivating me. I have made minor changes in the code related to time step. I realized one thing, which specifically relates to Resource Balance constraint: Before that l...