
Jaromił Najman
- Total activity 3475
- Last activity
- Member since
- Following 0 users
- Followed by 2 users
- Votes 11
- Subscriptions 1231
Activity overview
Latest activity by Jaromił Najman-
Jaromił Najman commented,
Currently each solve+creation takes roughly 0.004-0.005 seconds, and I am wondering if that is a kind of limit (Python API, would using the C++ API be noticeably superior here?) Which of the two ...
-
Jaromił Najman commented,
Hi Giorgos, I have formulate the CVRPTW problem which is solved by the barrier algorithm but when the dual simplex method crossover comes to optimize the solution it stucks forever showing me logs...
-
Jaromił Najman commented,
Hi Hussein, What does it mean when gurobi uses the Presolve, and now the Presolve removes all binary variables? Does that mean the problem can be formulated without binary variables? Theoretical...
-
Jaromił Najman commented,
Hi Nate, It seems like I am taking silly run-time hits like ~0.004s to simply update the constraints. Normally, these would be negligible, but the 'easiness' of the problem means that such hits ar...
-
Jaromił Najman commented,
Question 1: When modelling the binary constraint for flow, should I model it as this for t in time: m.addConstr((flow_bin.sum(i,j,t) <= 1)) or as this for t in time: m.addConstr((flow_bin...
-
Jaromił Najman commented,
Hi Annie, From the IIS you posted, you can see what is causing the infeasibility. Variable \(U_c\) is \(\geq 0\) and \(2.113 \cdot eigen_{cc} \geq 1.132740541274324 \). So in order to make the mode...
-
Jaromił Najman commented,
Hi Kazi, This particular issue has been fixed already for v9.1.2. Could you please share the model where you experience the problematic behavior? In order to generate a model file, please use the w...
-
Jaromił Najman commented,
In this part, the I want to constrain the flow from inland terminals. Such that only one of them should be able to provide containers. If I were to do it for every i j in nodes then port will be i...
-
Jaromił Najman commented,
However, will I have to do it individually if the problem has many more variables? You somehow have to provide this information to Gurobi. If you have the optimal solution point as some data stru...
-
Jaromił Najman commented,
Hi Annie, Posting screenshots of your code makes it very hard to provide help because one cannot copy and paste your code. If you would like to share big chunks of code, it is best to upload the fi...