Closed dirkschumacher closed 4 years ago
Although technically feaisble, it might not be something you would expect:
model$add_variable(x[i], type = "binary", i = 1:10) x[5]
Maybe change it to:
x <- model$add_variable(i = 1:10, type = "binary") x[5]
Although technically feaisble, it might not be something you would expect:
Maybe change it to: