From 9ef9a9a1c2e2319358fb164bc18a8a0efb23893b Mon Sep 17 00:00:00 2001 From: CJ East Date: Mon, 12 Jan 2015 23:53:51 +1100 Subject: Minor fixes for examples --- packages/glpk/examples/simplex1.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/glpk/examples/simplex1.hs') 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 , [2,2,6] :<=: 300 ] -- default bounds -bnds = [ 1 :=>: 0 - , 2 :=>: 0 - , 3 :=>: 0 ] +bnds = [ 1 :>=: 0 + , 2 :>=: 0 + , 3 :>=: 0 ] main = do print $ simplex objFun constr [] -- cgit v1.2.3