We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In the quick start tutorial, when associating the model with the Progressive Hedging algorithm, it appears the following code
set_optimizer_attribute(sp_progressivehedging, SubProblemOptimizer(), Ipopt.Optimizer) set_suboptimizer_attribute(sp_progressivehedging, MOI.RawParameter("print_level"), 0) # Silence Ipopt
It seems like MOI does not suppoer RawParamter anymore. I could make the algorithm run by changing the code to
MOI
RawParamter
set_optimizer_attribute( sp_progressivehedging, SubProblemOptimizer(), MOI.OptimizerWithAttributes(Ipopt.Optimizer, MOI.Silent() => true) )
The text was updated successfully, but these errors were encountered:
Try MOI.RawOptimizerAttribute("print_level")
MOI.RawOptimizerAttribute("print_level")
Sorry, something went wrong.
It also works.
No branches or pull requests
In the quick start tutorial, when associating the model with the Progressive Hedging algorithm, it appears the following code
It seems like
MOI
does not suppoerRawParamter
anymore. I could make the algorithm run by changing the code toThe text was updated successfully, but these errors were encountered: