diff options
author | Justin Bedo <cu@cua0.org> | 2014-10-07 11:10:34 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2014-10-07 11:13:10 +1100 |
commit | 35b43189d5a262860ad84da43928eeb7b1894420 (patch) | |
tree | 6d47c17e7afcdd77a42ee94bbd12453f34640bab /Math | |
parent | fd68822fda2472f676d835d80d6b17668e52ee45 (diff) |
Exported LPSolve module
Diffstat (limited to 'Math')
-rw-r--r-- | Math/LinProg/LPSolve.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Math/LinProg/LPSolve.hs b/Math/LinProg/LPSolve.hs index 23c3949..85f536d 100644 --- a/Math/LinProg/LPSolve.hs +++ b/Math/LinProg/LPSolve.hs @@ -1,6 +1,9 @@ {-# LANGUAGE ViewPatterns #-} -module Math.LinProg.LPSolve where +module Math.LinProg.LPSolve ( + solve + ,ResultCode(..) +) where import Control.Applicative import Control.Monad |