We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff663e4 commit b73b1dbCopy full SHA for b73b1db
development/Visualize.jl
@@ -33,7 +33,7 @@ function visualize(T::Tableau)
33
p = lp_solve(T)
34
P = Point(p...)
35
set_pointsize!(P, 5)
36
- set_pointcolor!(P, :red)
+ set_pointcolor!(P, :green)
37
draw(P)
38
39
draw_xaxis(x_max * 1.15)
test/examples.jl
@@ -41,7 +41,7 @@ end
41
function example5()
42
A = [8 3; 1 1; 1 4]
43
b = [24; 4; 12]
44
- c = [1; 2]
+ c = [2; 1]
45
return T = Tableau(A, b, c)
46
end
47
0 commit comments