Jonasz Staszek
Community Moderator- Total activity 309
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 16
- Subscriptions 126
Comments
Votes on activity by Jonasz Staszek-
Hi, is there any particular reason you load Gurobi by from .gurobipy import * ? Normally one would expect to load it like this: from gurobipy import * If this doesn't help, please let us know, addi...
-
Hi Sanket, Generally speaking, Porta and Polymake can guide you towards finding strong, potentially facet-defining inequalities for your problem. The best way you could benefit from using Porta or ...
-
Dear Sanket, you should turn to some other software package, e.g. Porta or Polymake to perform polyhedral analysis (i.e. to get a description of the convex hull you look for) As far as I know the t...
-
Hi Burcu, adding some meaningful names to your constraints. the documentation of the addConstrs() method mentions the 'name' parameter, which you can use to give your constraints a name. The same...
-
Hi Nan, Does this mean that building the model becomes faster if you use quicksum() or does also solving the model becomes faster when you use quicksum()? In principle, one can hope that building...
-
Hi Patrick, without knowledge about the model itself, I cannot give you specific guidance. Nonetheless some things I would try come below: 1) Update Gurobi to v10 - you seem to be using v. 9.5.1. 2...
-
Hi Ana, technically applying your heuristic and function could be done from within a callback every time you get a feasible solution. But since the solver has no clue about the other function which...
-
Hi Katinka, I'm no expert in Julia, but perhaps it is possible to export a module (in particular I mean to export the methods which you use to generate the model, then load them someplace else and ...
-
I want it to make sure the line return model.batteryLevel[t] == model.batteryLevel[t-1]+model.batteryCharge[t-1]-model.batteryDischarge[t-1] is checked for every t in my model, with the exception ...
-
Hi Maximilian, How your constraints are encoded results in only the first line after the function definition is executed. You can read more about the return statement here. For example, whenever th...