Working with python, i have a quadratic program (minimize : x' M x - 2 x' b) with constraints (E x = f, G x >= h) where M,E,G are matrices, and b,f,h are vectors.
This is the kind of classical quadratic program that software as OSQP handle well.
What now if the loss function is non linear anymore ? I now that for constraints specifications $l <= x <= u$, SLSQP in scipy does the job, but for matrix/vector constraint i did not found the right optimizer.
Could you provide one ?