Skip to content

Commit ca05bff

Browse files
committed
more
1 parent 95b7aef commit ca05bff

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

development/examples.jl

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,18 @@ function fishkind4()
2828
A = [2 1 0 9 -1; 1 1 -1 5 1]
2929
b = [9; 7]
3030
c = [2; 4; 2; 1; -1]
31-
@info "This problem is already in standard form"
31+
T = Tableau(A, b, c, false)
32+
end
33+
34+
"""
35+
fishkind400()
36+
37+
An example that fails the big-M method for small M.
38+
"""
39+
function fishkind400()
40+
A = [2 1 0 9 -1; 1 1 -1 5 1]
41+
b = [9; 7]
42+
c = 100 * [2; 4; 2; 1; -1]
3243
T = Tableau(A, b, c, false)
3344
end
3445

0 commit comments

Comments
 (0)