EAGO.jl icon indicating copy to clipboard operation
EAGO.jl copied to clipboard

Verbosity

Open r-barnes opened this issue 2 years ago • 1 comments

I run

JuMP.optimize!(m)

and get the output

-----------------------------------------------------------------------------------------------------------------------------
|  Iteration #  |     Nodes    | Lower Bound  |  Upper Bound  |      Gap     |     Ratio    |     Time     |    Time Left   |
-----------------------------------------------------------------------------------------------------------------------------
 
First Solution Found at Node -1
LBD = -Inf
UBD = -Inf
Solution is :

Is there a way to increase the verbosity of the output to help me figure out why the solver isn't proceeding?

r-barnes avatar Dec 25 '21 17:12 r-barnes

You can use the command set_optimizer_attribute(m, "verbosity", X) with X = 4 to get subproblem summary statistics.

mewilhel avatar Mar 23 '22 17:03 mewilhel