Good linear programming library for C #?

I am looking for a linear software solver for C #. In other words, I am looking for a library for C # that solves linear programming problems.

I need an easy-to-use library (so that I can learn how to use it quickly), but it would be nice if it supports some functions like automatic conversion of absolute values ​​(so I do not need to program the conversion myself), It is important that the library is free ( not necessarily open source).

Good documentation is a huge advantage for me. A 10% -20% reduction in performance is not critical to my project.

thank you for your responses

+7
c # linear-programming
source share
2 answers

Math.net

Read the C # Linear Algebra Library

EDIT: Check out http://en.wikipedia.org/wiki/Linear_programming#Solvers_and_scripting_.28programming.29_languages

This may be what you are looking for. Says it works with .Net
http://lpsolve.sourceforge.net/5.5/

+7
source share

You can use WNLIB , but it's just C, so you have to wrap it in a DLL, and then use it with C #.

+2
source share

All Articles