Junhong Liu
- Total activity 5
- Last activity
- Member since
- Following 1 user
- Followed by 0 users
- Votes 0
- Subscriptions 2
Activity overview
Latest activity by Junhong Liu-
Junhong Liu created a post,
Will Gurobi give sub-optimla solutions even the Gap is very small (<0.01%) for MINLP ?
AnsweredI am running a model, MINLP, using Gurobi, and the Gurobi converges very fast and gives the solution. However, I found a better solution using the distributed optimization algorithm (with sub-prob...
-
Junhong Liu commented,
Hi Elisabeth, Many thanks for your great help. It works as follows: m.setParam('LogToConsole', 0) m.setParam('OutputFlag', 0) m.setParam('NonConvex', 2) Best regards, Junhong
-
Junhong Liu created a post,
How to silence all the loggings?
AnsweredI configure the gurobipy to solve the non-convex problem, and meanwhile to silence all the outputs to the console: m.setParam('NonConvex', 2) m.setParam('LogToConsole', 0) m.s...