Reputation: 2193
Does anyone know of a free package that will solve quadratic programming problems in C#?
I've googled and found a few. But it's hard to tell which is the best and fastest. Does anyone have a favorite?
Upvotes: 5
Views: 4565
Reputation: 19770
I have found: Accord.NET (LGPL).
It is documented and with an example app.
Upvotes: 1
Reputation: 5406
CenterSpace Software has very fast C# quadratic programming classes in their commercial NMath libraries.
Here is some example code: http://www.centerspace.net/examples/nmath/csharp/analysis/quadratic-programming-example.php
Best,
Paul
CenterSpace Software
Upvotes: 0
Reputation: 6465
ALGLIB is a great library with both free (GPL) and commercial licenses available. It has good documentation and offers a number of optimization algorithms.
Upvotes: 3
Reputation: 7304
Perhaps the MS Solver Foundations?
http://msdn.microsoft.com/en-us/devlabs/hh145003
Upvotes: 2