Thank you for sharing the code for the proximal bundle method. It demonstrates strong performance.
I have a question that I would like to explore further.
Upon reviewing the IPOPT logs by
set_optimizer_attribute(model, "print_level", 5)
I observed that the maximum number of inequality constraints remained at dimension of variable + 2, even when I set the parameter ncuts_per_iter to very large, like
BM.set_parameter(pm.params, "ncuts_per_iter", 1000)
I would like to know whether there is an upper limit on the number of cuts that can be added.
In fact, it seems that parameter ncuts_per_iter does not work.
Thank you for sharing the code for the proximal bundle method. It demonstrates strong performance.
I have a question that I would like to explore further.
Upon reviewing the IPOPT logs by
I observed that the maximum number of inequality constraints remained at dimension of variable + 2, even when I set the parameter ncuts_per_iter to very large, like
I would like to know whether there is an upper limit on the number of cuts that can be added.
In fact, it seems that parameter
ncuts_per_iterdoes not work.