coin-or / Ipopt

COIN-OR Interior Point Optimizer IPOPT
https://coin-or.github.io/Ipopt
Other
1.41k stars 281 forks source link

Solver interface definitions #696

Closed bharswami closed 1 year ago

bharswami commented 1 year ago

Hi, I am trying to build Ipopt from the source code to create a MATLAB mex file. I have been able to do that without the linear solver functions definitions. Where can we get the source code for the linear solver function definitions (Interface files are available in IpSpralSolverInterface.cpp etc.)? I want to add that to my Visual Studio Project and compile. Thanks Bharath

svigerske commented 1 year ago

Regarding dependencies of Ipopt, see https://coin-or.github.io/Ipopt/INSTALL.html#EXTERNALCODE

For an existing Matlab interface, see https://github.com/ebertolazzi/mexIPOPT

bharswami commented 1 year ago

Thanks