diff options
Diffstat (limited to 'packages/glpk/lib')
-rw-r--r-- | packages/glpk/lib/Numeric/LinearProgramming.hs | 70 |
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 | {- | | ||
4 | Module : Numeric.LinearProgramming | ||
5 | Copyright : (c) Alberto Ruiz 2010 | ||
6 | License : GPL | ||
7 | |||
8 | Maintainer : Alberto Ruiz (aruiz at um dot es) | ||
9 | Stability : provisional | ||
10 | |||
11 | This module provides an interface to the standard simplex algorithm. | ||
12 | |||
13 | For example, the following linear programming problem | ||
14 | |||
15 | @maximize 4 x_1 + 3 x_2 - 2 x_3 + 7 x_4 | ||
16 | subject to | ||
17 | |||
18 | x_1 + x_2 <= 10 | ||
19 | x_3 + x_4 <= 10 | ||
20 | |||
21 | and | ||
22 | |||
23 | x_i >= 0@ | ||
24 | |||
25 | can be solved as follows: | ||
26 | |||
27 | @import Numeric.LinearProgramming | ||
28 | |||
29 | prob = Maximize [4, 3, -2, 7] | ||
30 | |||
31 | constr1 = Sparse [ [1\#1, 1\#2] :<: 10 | ||
32 | , [1\#3, 1\#4] :<: 10 | ||
33 | ] | ||
34 | |||
35 | |||
36 | \> simplex prob constr1 [] | ||
37 | Optimal (110.0,[10.0,0.0,0.0,10.0])@ | ||
38 | |||
39 | The 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 | |||
45 | By default all variables are bounded as @x_i <= 0@, but this can be | ||
46 | changed: | ||
47 | |||
48 | @\> simplex prob constr2 [2 :>: 1, 4 :&: (2,7)] | ||
49 | Optimal (88.0,[9.0,1.0,0.0,7.0]) | ||
50 | |||
51 | \> simplex prob constr2 [Free 3] | ||
52 | Unbounded@ | ||
53 | |||
54 | -} | ||
55 | |||
3 | module Numeric.LinearProgramming( | 56 | module 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 | ||
12 | import Numeric.LinearAlgebra | 66 | import 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) |
26 | infixl 5 # | 80 | infixl 5 # |
27 | (#) = (,) | 81 | (#) = (,) |
@@ -41,13 +95,15 @@ data Solution = Undefined | |||
41 | | Unbounded | 95 | | Unbounded |
42 | deriving Show | 96 | deriving Show |
43 | 97 | ||
44 | data Coeffs = Dense [ Bound [Double] ] | 98 | data Constraints = Dense [ Bound [Double] ] |
45 | | Sparse [ Bound [(Double,Int)] ] | 99 | | Sparse [ Bound [(Double,Int)] ] |
46 | 100 | ||
47 | data Optimization = Maximize [Double] | 101 | data Optimization = Maximize [Double] |
48 | | Minimize [Double] | 102 | | Minimize [Double] |
49 | 103 | ||
50 | simplex :: Optimization -> Coeffs -> [Bound Int] -> Solution | 104 | type Bounds = [Bound Int] |
105 | |||
106 | simplex :: Optimization -> Constraints -> Bounds -> Solution | ||
51 | 107 | ||
52 | simplex opt (Dense constr) bnds = extract sg sol where | 108 | simplex 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) |