Maximum - Accessor and Mutator Functions
maximum(x) maximum(x) <- value
x |
an object used to select the method. |
value |
an R object. |
a logical giving the direction.
## maximize: x + y ## subject to: x + y <= 2 ## x, y >= 0 x <- OP(objective = c(1, 1), constraints = L_constraint(L = c(1, 1), dir = "<=", rhs = 2), maximum = FALSE) maximum(x) <- TRUE maximum(x)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.