diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-04-10 09:53:23 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-04-10 09:53:23 +0200 |
commit | e499467d2c67f214b0871376b068c5b6fc7896a1 (patch) | |
tree | 166021773cbb2c066811ee27830dd5618114ab10 /packages/glpk/examples/simplex1.hs | |
parent | dcc03a4a764cb8683b80758af97fcbcc9aadba73 (diff) |
merge recent
Diffstat (limited to 'packages/glpk/examples/simplex1.hs')
-rw-r--r-- | packages/glpk/examples/simplex1.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/glpk/examples/simplex1.hs b/packages/glpk/examples/simplex1.hs index e7aeaa9..a326555 100644 --- a/packages/glpk/examples/simplex1.hs +++ b/packages/glpk/examples/simplex1.hs | |||
@@ -9,9 +9,9 @@ constr = Dense [ [1,1,1] :<=: 100 | |||
9 | , [2,2,6] :<=: 300 ] | 9 | , [2,2,6] :<=: 300 ] |
10 | 10 | ||
11 | -- default bounds | 11 | -- default bounds |
12 | bnds = [ 1 :=>: 0 | 12 | bnds = [ 1 :>=: 0 |
13 | , 2 :=>: 0 | 13 | , 2 :>=: 0 |
14 | , 3 :=>: 0 ] | 14 | , 3 :>=: 0 ] |
15 | 15 | ||
16 | main = do | 16 | main = do |
17 | print $ simplex objFun constr [] | 17 | print $ simplex objFun constr [] |