Skip to content

Commit 4cddbe0

Browse files
committed
todo was fixed
1 parent 9ec668b commit 4cddbe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pc_val = 2.0
4949
@variable(model, x)
5050
@variable(model, p in Parameter(p_val))
5151
@variable(model, pc in Parameter(pc_val))
52-
@constraint(model, cons, pc * x >= 3 * p) #??? InvalidConstraintRef TODO
52+
@constraint(model, cons, pc * x >= 3 * p)
5353
@objective(model, Min, 2x)
5454
optimize!(model)
5555
@show value(x) == 3 * p_val / pc_val

0 commit comments

Comments
 (0)