ramesh singh
- Total activity 9
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 2
Activity overview
Latest activity by ramesh singh-
ramesh singh created a post,
ILP and LP with integer decision relaxation and Mult objective formulation
AnsweredI was reading a research article, where they proposed ILP (say P1). Later on, they converted the ILP into LP by relaxing the integer decision variable (say P2). Further, they used Solver to find th...
-
ramesh singh commented,
if i removed TL_temp constraints and update the TL and TR as for i in range(1,P+1): m.addConstr(TL[i]==sum((raw_data[i]*delta[i]/CU[i] + action_data[i]*bw[i,k])*C[i,k] for k in rang...
-
ramesh singh commented,
okay thank you so much for detaild explainations
-
ramesh singh commented,
Thank you! m.addConstr((C[i,k]==1)>> (TL[i]==(r_d[i]*d[i]/CU[i] + a_d[i]*TL_temp[i]))) this constraints have indirect dependency on k, through TL_temp[i] (m.addConstr(TL_temp[i]==(sum(bw[i...
-
ramesh singh created a post,
Help with constraints
Awaiting user inputIn the given code, T1[i]== (TL[i] * (1-D[i])+ TR[i]*D[i]) constraint set the decision variable D[i] such that minimize T1 when i run the code it produces D[7] 1 D[8] 1 whereas TL[7] 3.71598 TL[8] ...