Tanmoy Das
Data Scientist, currently final year in PhD at Dalhousie University. Working on a resource optimization problem
- Total activity 80
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 14
- Subscriptions 26
Posts
Recent activity by Tanmoy Das-
How to accurately calculate reduced cost when generating one column in column generation?
AnsweredHello good people, I am working on a variant of VRP & solving it using Column Generation. The objective function of the pricing problem is my reduced cost (RC) of each route/sequence. My initial ...
-
How to use non-defaults solution algorithm in Gurobi?
AnsweredHello, I am writing a MIP model in Gurobipy. As I understand from documentation that Gurobi by default uses B&C algorithm to solve a MIP problem. How can I use another solution algorithm (if any ot...
-
How to print objective values, runtime of each iteration?
AnsweredHello, I need to print values of objective for each iteration (not just two iterations as shown below). I think callback function could be useful. But, cant find the correct syntax. Note: it's a MI...
-
How to add m.ModelSense for multiobjective optimization?
AnsweredHi, I have two objectives, one to maximize another one to minimize. How to tell the model that obj1 is maximization and obj2 is minimization? The below ModelSense will consider both objectives as m...
-
How to model constraint to send only when facility is open?
AnsweredHi, How can I implement a constraint so that resources from facility is sent to customer only when that facility is open? select is a binary variable to send resource r from station s. deploy is a...
-
Gurobi Python code to print non-binding constraints?
AnsweredHello good people, How can I correctly write/save the model.lp file to store non-binding constraints as well? When I write the model.lp file, most constraints are found formulated as expected. Howe...
-
Print all objective function value?
AnsweredHello, model.objval prints only the optimal objective value. But, I need values of objective function for both optimal (and non-optimal) solutions.
-
How to write mathematical formulation based on Gurobi Python script?
AnsweredIs there any API or tools in Gurobi to generate the math equation of constraints based on the Python script of that constraint? I want to get the math formula of the following constraint: model2.ad...
-
How to conduct comprehensive sensitivity analysis?
AnsweredIn my current optimization model, I have 3 binding and 6 non-binding constraint. So, I want to perform a detail sensitivity analysis to see if there is any loophole in the model formulation. Is the...
-
KeyError 10 in Constraint line of Python code; MCLP Optimization model building
AnsweredI am trying to implement a constraint of the maximal coverage problem (Equation 16.2 from the image at the bottom of this post). A minimal Python code is below. But the code is giving me error Key...