-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement linear programming #78
Comments
Like I write in the comments for issue #77, I evaluated a bunch of LP solvers last summer and CLP seems like by far the most mature and scalable. Just a bit nasty to use. |
We had used CLP at ISC, and it was really fast. I don't think its interior point stuff was implemented back then, but the simplex method was the fastest. -viral On Jun 23, 2011, at 4:34 AM, StefanKarpinski wrote:
|
Also, there's a COIN-OR project that provides a common API across various free and non-free LP solvers. We should try to code to that one, rather than calling CLP directly. -viral On Jun 23, 2011, at 4:34 AM, StefanKarpinski wrote:
|
Ooo. That's a great idea. |
http://www.coin-or.org/projects/Osi.xml
|
We now have an interface to GLPK, thanks to @carlobaldassi. Closing this. CLP can come later, if necessary. |
* implement build call * fix help string [ci skip]
New exercise: collatz-conjecture
…g#78) GC threads don't have tasks associated with them. Co-authored-by: Diogo Netto <[email protected]>
Coin-OR has a fast linear programming library - CLP
https://projects.coin-or.org/Clp
There are a whole lot of others out there as well. Need to evaluate and pick.
The text was updated successfully, but these errors were encountered: