miplib {ROI.models.miplib} | R Documentation |
MIPLIB
Get one or more optimization problems, meta information or a listing
of the available MIPLIB 2010
problems.
miplib(x, folder = system.file("roi_op", package = "ROI.models.miplib"))
x |
a character giving the names of the optimization problems
to be returned, if |
folder |
the folder where the optimization problems are stored. |
The function miplib
searches in the given folder for
.rds
files and returns them.
## Not run: ## list all available MIPLIB-2010 problems miplib() ## get all miplib problems miplib("all") ## get a single problem miplib("rmine6") ## get the meta information miplib("metainfo") ## End(Not run)