Hi folks,
I’m using CPLEX with CPLEX.jl. I’m getting my model to solve and can retrieve the solution but I’m not getting any solver console output at all. Using Clp, I do see solver progress and solution status messages, but nothing at all with CPLEX. This is the relevant code:
m = Model(with_optimizer(CPLEX.Optimizer))
env = CPLEX.Env()
CPLEX.set_param!(env, "CPX_PARAM_SCRIND", 1)
CPLEX.set_param!(env, "CPX_PARAM_MIPDISPLAY", 1)
Edit: I’m using Atom+Juno as my IDE