Vadim Avkhimenia
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
Activity overview
Latest activity by Vadim Avkhimenia-
Vadim Avkhimenia commented,
In addition to the above, maybe a slightly simpler problem can be considered. Again, I am trying to minimize the number of variables I am using in order to speed up the code. My eventual goal is to...
-
Vadim Avkhimenia commented,
Hello Steven. Thank you for your previous comment. I have a question about a slightly harder problem, in which I am trying to minimize the number of variables and constraints that I am using. Here...
-
Vadim Avkhimenia created a post,
How to determine how long it will take the simulation to finish?
AnsweredHello, I have a model that can take multiple days to solve. I was curious if there is a feature in Gurobi that can tell me how long it should take the model to solve? An estimate up to a few hours ...
-
Vadim Avkhimenia created a post,
What kind of functions can be accepted into Model.setObjective method?
AnsweredHello, I have the following code where I am trying to find the value of 'x' for which the function below will be at a minimum: ----------------------------------------------------------------------...
-
Vadim Avkhimenia commented,
My apologies Steven. Here is what I mean. As you can see I defined z to be dictionary first. Then I said that for each key in z, z[time_interval] is defined as a Gurobi variable, suing the .addVar...
-
Vadim Avkhimenia commented,
Thank you Steven. I restarted my kernel and got the same answer as you. Now I was wondering about something else. As you can see I am calculating y based on z, and z based on x, for every time inte...
-
Vadim Avkhimenia created a post,
Why is this model infeasible?
OngoingHello, I cannot understand why this model is infeasible? from gurobipy import Model, GRB solver = Model() X = solver.addVar(0, float('inf')) x = {}for time_interval in range(5):x[time_interval] =...
-
Vadim Avkhimenia commented,
Hello Jaromil. Thank you very much for the suggestions. The problem ended up being consistently subtracting (step+1)/113880 term from D which makes it less than 0. I had another question. Is ther...
-
Vadim Avkhimenia commented,
Thank you Jaromil. Yes, absolutely, the latest version is here: https://stackoverflow.com/questions/69640879/gurobi-says-model-is-infeasible-yet-i-am-able-to-find-a-solution-by-hand . It works for ...
-
Vadim Avkhimenia commented,
Additionally, I should be able to pick an A large enough so that it will never become less than 0 and it appears this problem should be feasible.