Ishit Bajpai
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Posts
Recent activity by Ishit Bajpai-
I want to stop my LP when |primal obj - dual obj| <= 1.and want decision variable values and optimal solution values.
AnsweredBelow code was suggested to me by an expert , however it terminates once it reaches a gap = 1 and i am unable to get decision variable values and optimal solution. import sysimport gurobipy as gpf...
-
Barrier is not working properply
AnsweredI am using the below methods to run my Lp faster. m1.params.Method = 2 # fix to barrierm1.params.BarConvTol = 1m1.params.OptimalityTol = 1e-2m1.params.OptimalityTol = 1e-2However it is taking a lot...
-
How to terminate a Linear program once i get a desired difference(say 1) between primal and dual solution?
Answered