Nothing
set.constr.type <- function(lprec, types, constraints = 1:m) {
m <- dim(lprec)[1]
if (length(types) != length(constraints)) {
stop(sQuote("types"), " and ", sQuote("constraints"), " are not the same length")
}
if (is.character(types)) {
types <- match(types, c("<=", ">=", "="), nomatch = 0)
}
.Call(RlpSolve_set_constr_type, lprec, as.integer(constraints), as.integer(types))
invisible()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.