powered by
Set the model objective
set_objective(model, expression, sense = c("max", "min"))set_objective_(model, expression, sense = c("max", "min"))
set_objective_(model, expression, sense = c("max", "min"))
a Model with a new objective function definition
the model
the linear objective as a sum of variables and constants
the model sense. Must be either "max" or "min".
library(magrittr) MIPModel() %>% add_variable(x, lb = 2) %>% add_variable(y, lb = 40) %>% set_objective(x + y, sense = "min")
Run the code above in your browser using DataLab