ompr.roi (version 1.0.2)

with_ROI: Configures a solver based on 'ROI'

Description

This function makes all solvers in the R package 'ROI' available to solve 'ompr' models.

Usage

with_ROI(solver, ...)

Value

a function: Model -> Solution that can be used together with solve_model. You can find ROI's original solver message and status information in <return_value>$ROI. The ompr status code is "success"

if ROI returns code = 0 and is "error" otherwise.

Arguments

solver

the 'ROI' solver name (character vector of length 1)

...

optional parameters passed to ROI_solve

Note: it does only support column duals. It currently does not export row duals.

References

Kurt Hornik, David Meyer, Florian Schwendinger and Stefan Theussl (2016). ROI: R Optimization Infrastructure. <https://CRAN.R-project.org/package=ROI>

Examples

Run this code
if (FALSE) {
library(magrittr)
library(ompr)
library(ROI)
library(ROI.plugin.glpk)
add_variable(MIPModel(), x, type = "continuous") %>%
 set_objective(x, sense = "max") %>%
 add_constraint(x <= 5) %>%
 solve_model(with_ROI(solver = "glpk", verbose = TRUE))
}

Run the code above in your browser using DataLab