Search code examples
optimizationhaskellmathematical-optimizationlinear-programming

Quadratic programming in Haskell


Are there any Haskell bindings for quadratic programming libraries?

If not, which one should I write simplified bindings for assuming I cannot avoid needing one? Is there a reasonably canonically favored open source library for this?


Solution

  • There probably isn't. Way back in the day I had to whip up my own linear programming bindings -- glpk-hs -- but I doubt anything's come along for quadratic programming since then.