We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ec668b commit 4cddbe0Copy full SHA for 4cddbe0
README.md
@@ -49,7 +49,7 @@ pc_val = 2.0
49
@variable(model, x)
50
@variable(model, p in Parameter(p_val))
51
@variable(model, pc in Parameter(pc_val))
52
-@constraint(model, cons, pc * x >= 3 * p) #??? InvalidConstraintRef TODO
+@constraint(model, cons, pc * x >= 3 * p)
53
@objective(model, Min, 2x)
54
optimize!(model)
55
@show value(x) == 3 * p_val / pc_val
0 commit comments