Linear programming library recommendations?

What are some available libraries providing linear programming facilities, such as an implementation of the simplex algorithm? I could implement the algorithm on top of existing matrix libraries, but it would be nice to reuse an existing package.

I don't need high performance for now, a nice-to-use API would be great (as opposed to consuming a C library directly).

3 Likes

I don’t know of an optimization library offhand.

I did implement the simplex algorithm in Swift a while back for a personal project, but I never made it available as a package. Perhaps I should do that…