# Define objective function
obj <- c(1, 2, 3)
max <- TRUE
# Define constraints
mat <- matrix(c(1, 5, 1, 0, 0, 1, 18, 0, 1, 0, 1, 25, 0, 0, 1), nrow = 5)
dir <- c("<=", "<=", ">=", ">=", ">=")
rhs <- c(8, 120, 2, 2, 2)
# Define problem type (MIP)
types <- c("I", "I", "I")
# Call solver
Rglpk::Rglpk_solve_LP(obj, mat, dir, rhs,
types = types, max = max,
control = list("verbose" = TRUE, "canonicalize_status" = FALSE))