MG
- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Posts
Recent activity by MG-
Having 2 implemented Callback methods
AnsweredHello everybody, can I implement 2 callback methods for one lp? My goal is to first calculate the first callback until the lp finds a solution and afterwards call another callback method which has ...
-
How to set the Method as a parameter
AnsweredHello everyone, I have an heuristic and i want to tell gurobi to solve this heuristic with broken variables only with the simplex or dual algorithm. I have searched the documentation and it says th...
-
How to implement an LP Relaxation with Gurobi
AnsweredHello everybody, I am trying to implement a LP-Relaxed Program. In my real program the variables are binaries and all is fine ex: GRBVar var = model.addVar(0.0, 1.0, 0.0, GRB.BINARY, "x"+job.getJob...