
Gnanadeepan D
- Total activity 11
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Activity overview
Latest activity by Gnanadeepan D-
Gnanadeepan D commented,
Yes, I did worked. Thankyou.
-
Gnanadeepan D commented,
From some suggestions, I made all variables as Continuous and then I checked it. It works for minimization objective but not for maximization.
-
Gnanadeepan D created a post,
How to find absolute difference of list and use those values in maximization optimization model guobipy?
Answered#Following is my code where I try absolute operations of two lists based on some conditions and then maximize the summation of those.m=[5,3,2]cm=[sum(m[0:x:1]) for x in range(1, len(m)+1)]P=len(m)p...
-
Gnanadeepan D created a post,
How to acheive cumulative sum of cumulative 3D arrays in gurobi python
Awaiting user inputSay I have X1 and X2 which is based on some operations between variables and parameters of the model and so X1 and X2 will be variables. x1=[[[1, 6], [2, 7], [3, 8], [4, 9], [5, 10]], [[1, 6], [2, ...
-
Gnanadeepan D commented,
Hi Alison, I missed an important point in the previous query, i have changed two constraints according to my model which elapsed the solver time, its been more than 2 hours, I'm waiting for the sol...
-
Gnanadeepan D commented,
Thank you Alison. Yes, i corrected that blunder mistake, now its feasible and now the issue is when the input of d=[11,1,1,1,1,1,1,1,1,1] and s=[12,9,6,6] as I commented in the code, the solver tak...
-
Gnanadeepan D created a post,
Why the following model showing infeasible in gurobipy when the same is solved optimally by MIP python open source solver? What am I missing ? Is it the operation between arrays and guobi variables the issue? How to find out?
Answeredimport randomimport gurobipy as grbimport mathq=[[4,5,0,2],[3,2,1,0],[0,1,4,5],[3,2,0,1],[2,1,3,2],[4,3,2,1],[3,4,2,0],[5,0,3,1],[0,4,3,3],[4,0,4,1]] #s=[11,1,1,1,1,1,1,1,1,1] s=[20,0,0,0,0,0,0,0,0...