Michael Covelli
Michael Covelli

Reputation: 2193

Quadratic Programming in C# / .NET

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

Answers (4)

TN.
TN.

Reputation: 19770

I have found: Accord.NET (LGPL).

It is documented and with an example app.

Upvotes: 1

Paul
Paul

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

Andreas
Andreas

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

Mario Vernari
Mario Vernari

Reputation: 7304

Perhaps the MS Solver Foundations?

http://msdn.microsoft.com/en-us/devlabs/hh145003

Upvotes: 2

Related Questions