Hi All, I am trying to change some settings in MadNLP.jl when used via JuMP.jl. I would like to change the barrier strategy from the default monotone to adaptive. I just do not manage to change those settings. Does anyone know how to do that please?
These settings work:
model = Model(MadNLP.Optimizer)
set_attribute(model, "print_level", MadNLP.INFO)
set_attribute(model, "max_iter", 50)
set_attribute(model, "tol", 1e-8)
set_attribute(model, "acceptable_tol", 1e-6)
set_attribute(model, "output_file", folderRes * "madnlp_out.txt")
but I do not manage to add something like:
set_attribute(model, "barrier", "adaptive")
Thanks!