I have tried multiple methods to silence the verbosity of “dualized Mosek”. (Currently using JuMP v0.20.2 and Dualization v0.2.2)
julia> model = Model(with_optimizer(() -> Dualization.DualOptimizer(Mosek.Optimizer())))
A JuMP Model
Feasibility problem with:
Variables: 0
Model mode: AUTOMATIC
CachingOptimizer state: EMPTY_OPTIMIZER
Solver name: Dual model with Mosek attached
julia> set_silent(model)
ERROR: MathOptInterface.UnsupportedAttribute{MathOptInterface.Silent}: Attribute MathOptInterface.Silent() is not supported by the model.
The error is not present when using Mosek directly.
julia> model = Model(with_optimizer(Mosek.Optimizer))
A JuMP Model
Feasibility problem with:
Variables: 0
Model mode: AUTOMATIC
CachingOptimizer state: EMPTY_OPTIMIZER
Solver name: Mosek
julia> set_silent(model)
true
Is there any method I could use? Or is this a Dualization bug?