You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think, however, that perhaps this is supposed to have the same effect:
MOI.set(moi_model, MOI.BarrierIterations(), 200)
The latter call fails like so:
julia> using Tulip, MathOptInterface
julia> const MOI = MathOptInterface
MathOptInterface
julia> lp = Tulip.Optimizer{BigFloat}()
Tulip.Optimizer{BigFloat}
julia> MOI.set(lp, MOI.BarrierIterations(), 100)
ERROR: MathOptInterface.SetAttributeNotAllowed{MathOptInterface.BarrierIterations}: Setting attribute MathOptInterface.BarrierIterations() cannot be performed. You may want to use a `CachingOptimizer` in `AUTOMATIC` mode or you may need to call `reset_optimizer` before doing this operation if the `CachingOptimizer` is in `MANUAL` mode.
Stacktrace:
[1] throw_set_error_fallback(model::Tulip.Optimizer{BigFloat}, attr::MathOptInterface.BarrierIterations, value::Int64; error_if_supported::MathOptInterface.SetAttributeNotAllowed{MathOptInterface.BarrierIterations})
@ MathOptInterface ~/.julia/packages/MathOptInterface/wx5Ea/src/attributes.jl:584
[2] throw_set_error_fallback(model::Tulip.Optimizer{BigFloat}, attr::MathOptInterface.BarrierIterations, value::Int64)
@ MathOptInterface ~/.julia/packages/MathOptInterface/wx5Ea/src/attributes.jl:577
[3] set(model::Tulip.Optimizer{BigFloat}, attr::MathOptInterface.BarrierIterations, args::Int64)
@ MathOptInterface ~/.julia/packages/MathOptInterface/wx5Ea/src/attributes.jl:550
[4] top-level scope
@ REPL[4]:1
The text was updated successfully, but these errors were encountered:
The README suggests setting the iteration limit like so:
I think, however, that perhaps this is supposed to have the same effect:
The latter call fails like so:
The text was updated successfully, but these errors were encountered: