Popularity
6.7
Growing
Activity
0.0
Stable
16
4
5

Monthly Downloads: 20
Programming language: Haskell
License: MIT License
Tags: Numeric     Limp    

limp alternatives and similar packages

Based on the "limp" category.
Alternatively, view limp alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of limp or a related project?

Add another 'limp' Package

README

limp

This package provides two representations for linear programs: "Numeric.Limp.Program", which is what I expect end-users to use, and "Numeric.Limp.Canon", which is simpler, but would be less nice for writing linear programs. You can convert programs from the Program representation to the Canon representation using "Numeric.Limp.Canon.Convert", and then pretty-print the program using "Numeric.Limp.Canon.Pretty".

There is a very simple branch-and-bound solver in "Numeric.Limp.Solve.Branch.Simple", and a simplex solver for relaxed (real only) programs in "Numeric.Limp.Solve.Simplex.Maps". See the limp-cbc package for a simple external solver.