I use the package scipy.optimize.minimize in Python and especially with SLSQP because this algorithm is better suited to my problem. The problem is that SLSQP makes an approximation to calculate the hessian of the objective function while I know it analytically. How can I pass the hessian to the algorithm ?
Thanks.