diff options
author | Alberto Ruiz <aruiz@um.es> | 2010-03-31 19:52:46 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2010-03-31 19:52:46 +0000 |
commit | 261db58d71fbc378a5bb39f35a64d1c9fd4691e3 (patch) | |
tree | 1cd8257016408c27b5e9ad24338de4601a7fbfef /packages/glpk/examples/simplex3.hs | |
parent | 80f6ea4a8b1c5fb0bcd68f8d934364fd9c9b4780 (diff) |
corrected Bound constructors (thx Ozgur Akgun)
Diffstat (limited to 'packages/glpk/examples/simplex3.hs')
-rw-r--r-- | packages/glpk/examples/simplex3.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/glpk/examples/simplex3.hs b/packages/glpk/examples/simplex3.hs index 1df6b28..e093124 100644 --- a/packages/glpk/examples/simplex3.hs +++ b/packages/glpk/examples/simplex3.hs | |||
@@ -7,11 +7,11 @@ prob = Minimize [0.03, 0.08, 0.17, 0.12, 0.15, 0.21, 0.38] | |||
7 | 7 | ||
8 | constr = Dense | 8 | constr = Dense |
9 | [ [1,1,1,1,1,1,1] :==: 2000 | 9 | [ [1,1,1,1,1,1,1] :==: 2000 |
10 | , [0.15, 0.04, 0.02, 0.04, 0.2,0.01, 0.03] :<: 60 | 10 | , [0.15, 0.04, 0.02, 0.04, 0.2,0.01, 0.03] :<=: 60 |
11 | , [0.03, 0.05, 0.08, 0.02, 0.06, 0.01, 0] :<: 100 | 11 | , [0.03, 0.05, 0.08, 0.02, 0.06, 0.01, 0] :<=: 100 |
12 | , [0.02, 0.04, 0.01, 0.02, 0.02, 0, 0] :<: 40 | 12 | , [0.02, 0.04, 0.01, 0.02, 0.02, 0, 0] :<=: 40 |
13 | , [0.02, 0.03, 0, 0, 0.01, 0, 0] :<: 30 | 13 | , [0.02, 0.03, 0, 0, 0.01, 0, 0] :<=: 30 |
14 | , [0.7, 0.75, 0.8, 0.75, 0.8, 0.97, 0] :>: 1500 | 14 | , [0.7, 0.75, 0.8, 0.75, 0.8, 0.97, 0] :=>: 1500 |
15 | , [0.02, 0.06, 0.08, 0.12, 0.02, 0.01, 0.97] :&: (250,300) | 15 | , [0.02, 0.06, 0.08, 0.12, 0.02, 0.01, 0.97] :&: (250,300) |
16 | ] | 16 | ] |
17 | 17 | ||