summaryrefslogtreecommitdiff
path: root/packages/glpk/lib
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2010-02-23 09:23:06 +0000
committerAlberto Ruiz <aruiz@um.es>2010-02-23 09:23:06 +0000
commit5587a094afa3e24698cd38301c805e6ee5876c73 (patch)
tree9c240fc1a558e871928fe61b99a8cdccd649d3e4 /packages/glpk/lib
parentf38b4a3076cfae023559ce61cb2a443c809b7a6f (diff)
documentation for simplex
Diffstat (limited to 'packages/glpk/lib')
-rw-r--r--packages/glpk/lib/Numeric/LinearProgramming.hs70
1 files changed, 63 insertions, 7 deletions
diff --git a/packages/glpk/lib/Numeric/LinearProgramming.hs b/packages/glpk/lib/Numeric/LinearProgramming.hs
index 1b14080..fff304f 100644
--- a/packages/glpk/lib/Numeric/LinearProgramming.hs
+++ b/packages/glpk/lib/Numeric/LinearProgramming.hs
@@ -1,12 +1,66 @@
1{-# LANGUAGE ForeignFunctionInterface #-} 1{-# LANGUAGE ForeignFunctionInterface #-}
2 2
3{- |
4Module : Numeric.LinearProgramming
5Copyright : (c) Alberto Ruiz 2010
6License : GPL
7
8Maintainer : Alberto Ruiz (aruiz at um dot es)
9Stability : provisional
10
11This module provides an interface to the standard simplex algorithm.
12
13For example, the following linear programming problem
14
15@maximize 4 x_1 + 3 x_2 - 2 x_3 + 7 x_4
16subject to
17
18x_1 + x_2 <= 10
19x_3 + x_4 <= 10
20
21and
22
23x_i >= 0@
24
25can be solved as follows:
26
27@import Numeric.LinearProgramming
28
29prob = Maximize [4, 3, -2, 7]
30
31constr1 = Sparse [ [1\#1, 1\#2] :<: 10
32 , [1\#3, 1\#4] :<: 10
33 ]
34
35
36\> simplex prob constr1 []
37Optimal (110.0,[10.0,0.0,0.0,10.0])@
38
39The coefficients of the constraint matrix can also be given in dense format:
40
41@constr2 = Dense [ [1,1,0,0] :<: 10
42 , [0,0,1,1] :<: 10
43 ]@
44
45By default all variables are bounded as @x_i <= 0@, but this can be
46changed:
47
48@\> simplex prob constr2 [2 :>: 1, 4 :&: (2,7)]
49Optimal (88.0,[9.0,1.0,0.0,7.0])
50
51\> simplex prob constr2 [Free 3]
52Unbounded@
53
54-}
55
3module Numeric.LinearProgramming( 56module Numeric.LinearProgramming(
57 simplex,
4 Optimization(..), 58 Optimization(..),
59 Constraints(..),
60 Bounds,
5 Bound(..), 61 Bound(..),
6 (#), 62 (#),
7 Coeffs(..), 63 Solution(..)
8 Solution(..),
9 simplex,
10) where 64) where
11 65
12import Numeric.LinearAlgebra 66import Numeric.LinearAlgebra
@@ -21,7 +75,7 @@ import Data.Function(on)
21 75
22----------------------------------------------------- 76-----------------------------------------------------
23 77
24-- | Coefficient of a variable 78-- | Coefficient of a variable for a sparse representation of constraints.
25(#) :: Double -> Int -> (Double,Int) 79(#) :: Double -> Int -> (Double,Int)
26infixl 5 # 80infixl 5 #
27(#) = (,) 81(#) = (,)
@@ -41,13 +95,15 @@ data Solution = Undefined
41 | Unbounded 95 | Unbounded
42 deriving Show 96 deriving Show
43 97
44data Coeffs = Dense [ Bound [Double] ] 98data Constraints = Dense [ Bound [Double] ]
45 | Sparse [ Bound [(Double,Int)] ] 99 | Sparse [ Bound [(Double,Int)] ]
46 100
47data Optimization = Maximize [Double] 101data Optimization = Maximize [Double]
48 | Minimize [Double] 102 | Minimize [Double]
49 103
50simplex :: Optimization -> Coeffs -> [Bound Int] -> Solution 104type Bounds = [Bound Int]
105
106simplex :: Optimization -> Constraints -> Bounds -> Solution
51 107
52simplex opt (Dense constr) bnds = extract sg sol where 108simplex opt (Dense constr) bnds = extract sg sol where
53 sol = simplexDense (mkConstrD objfun constr) (mkBoundsD constr bnds) 109 sol = simplexDense (mkConstrD objfun constr) (mkBoundsD constr bnds)