Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good linear programming library for C#? [closed]

I'm looking for a linear programming solver for C#. In the other words I'm looking for a library for C# that solves linear programming problems.

I need an easy to use library (so I can learn how to use it quickly), but it would be nice if it supported some features as automatic absolute values conversion (so I don't have to program the conversion myself). It is important that the library should be for free (not necessarily open source).

Good documentation is huge advantage for me. 10%-20% worse performance is not critical for my project.

Thanks for your answers

like image 552
Rasto Avatar asked Jul 29 '10 13:07

Rasto


People also ask

Which software is used for linear programming?

LINDO - (Linear, Interactive, and Discrete Optimizer) a software package for linear programming, integer programming, nonlinear programming, stochastic programming, and global optimization. The "What's Best!" Excel add-in performs linear, integer, and nonlinear optimization using LINDO.

What is linear programming in C?

Linear programming is used for obtaining the most optimal solution for a problem with given constraints. In linear programming, we formulate our real-life problem into a mathematical model. It involves an objective function, linear inequalities with subject to constraints.

Which software is useful to solve the LP problems?

Linear programming upgrades to Premium Solver Platform, the LSLP, MOSEK, XPRESS and Gurobi Solvers, can solve LP/MIP problems with an unlimited number of variables and constraints.

What grade is linear programming?

IXL | Linear programming | Grade 11 math.


1 Answers

Math.NET

Read C# linear algebra library

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

This one might be what your looking for though. Says it works with .Net
http://lpsolve.sourceforge.net/5.5/

like image 97
Gage Avatar answered Oct 08 '22 09:10

Gage