The objective function is unbounded (when x gets bigger and bigger, the objective value also gets bigger in both negative and positive directions). What about adding the constraint
@constraint(model, x >= 0)
?
The objective function is unbounded (when x gets bigger and bigger, the objective value also gets bigger in both negative and positive directions). What about adding the constraint
@constraint(model, x >= 0)
?