summaryrefslogtreecommitdiff
path: root/packages/glpk/examples/simplex3.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-01-12 17:33:17 +0100
committerAlberto Ruiz <aruiz@um.es>2015-01-12 17:33:17 +0100
commitfd4ea99b3fdbd3451b3ece61fd554e6f01801e29 (patch)
tree35666b648b4e8a7488805af82b9da65d7fa50a67 /packages/glpk/examples/simplex3.hs
parent432d80a0b65b0be64fe0dc0d7816f1f738895458 (diff)
parent9ef9a9a1c2e2319358fb164bc18a8a0efb23893b (diff)
Merge pull request #106 from cje/fix-examples
Minor fixes for examples
Diffstat (limited to 'packages/glpk/examples/simplex3.hs')
-rw-r--r--packages/glpk/examples/simplex3.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/glpk/examples/simplex3.hs b/packages/glpk/examples/simplex3.hs
index e093124..0997320 100644
--- a/packages/glpk/examples/simplex3.hs
+++ b/packages/glpk/examples/simplex3.hs
@@ -11,7 +11,7 @@ constr = Dense
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