Java Apache BOBYQA optimization termination criteria

31 Views Asked by At

I am trying to solve a 2 dimensional optimization problem using BOBYQA Optimization Java library provided by Apache Math. If I understood correctly, the only termination/convergence criteria in BOBYQA Java library is the minimum trust region radius. As for the Python implementation of BOBYQA, one can terminate the optimization based on the objective function value as well.

I can see that in Java, optimization still keeps on running even though the value of the objective function is acceptable. I want to terminate the optimization when the value of objective function is lower than the acceptable value. Is there a way in Java implementation of BOBYQA to terminate the optimization based on the objective function value?

0

There are 0 best solutions below