Sudheer Reddy
- 合計アクティビティ 40
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 6
- サブスクリプション 15
投稿
Sudheer Reddyによる最近のアクティビティ-
Warning: max constraint violation (9.2015e-06) exceeds tolerance
回答済みGurobi Optimizer version 9.5.0 build v9.5.0rc5 (win64)Gurobi Compute Server Worker version 9.5.0 build v9.5.0rc5 (win64)Thread count: 8 physical cores, 8 logical processors, using up to 8 threadsOp...
-
Integer Solutions of Linear Programming Problems
回答済みIdentifying cases where the solution to an LP problem happens to be integer-valued without explicitly formulating it as an Integer Linear Programming (ILP) problem. I understand that in some LP pro...
-
Is best bound estimation always accurate as it is changing over time?
進行中Is best bound estimation always accurate. below are my logs Since best bounds is changing over run time. Gurobi 9.5.0 (win64) logging started Sat Feb 24 23:07:18 2024Set parameter MIPGap to value ...
-
Solver stopping criteria currently I am using MIPGAp and Time Limit and looking to add another stopping criteria
回答済みMost of the scenarios are completing within 10 mins with MIP gap of 0.01, but only 2 scenarios are reaching the time limit. The two scenarios mostly follows similar graphs as shown below. I'm consi...
-
Model logs shows Numerical Issues how to handle this
回答済みThe model log tells, Consider reformulating model. Here how to find which part of the constraint I need to reformulate. Is there any way to see which constraints are causing this issue? Model con...
-
In C# I am not able to find this attribute Model.printQuality() or Model.PrintQuality()
回答済みI am not able to find the model.printQuality for C#
-
GRBGenConstr how to get slacks for this type of constriants
回答済みI am using AddGenConstrIndicator in C# how to get constraint slacks. I am able to get slacks for GRBConstr constraints. But how to get for GRBGenConstr
-
Relaxing constraints to see how much we can improve objective value
回答済みIn Mixed Integer Programming (MIP), I am trying to find list of constraints which I can relax and see how much the objective value can be increased (just like shadow price in LP)How to achieve this...
-
Is there a advantage converting == constraint to <= and >=
回答済みif we convert x==8 constraint to x<=8 and x>=8 is there any advantage? Read == constraint is hard to solve
-
Variable upper bound is defined through addVars. Can we get active variables just like active constriants
回答済みSo for active constraints we can check as below. Then for active variables is there a way to check if c.Slack < 1e-6: When a variable lower bound and upper bound is defined in model Is there any wa...