Learn R Programming

ROI (version 0.2-1)

.ROI_plugin_make_signature: Make Signatures

Description

Create a solver signature, the solver signatures are used to indicate which problem types can be solved by a given solver.

Usage

.ROI_plugin_make_signature(...)

Arguments

...
signature definitions

Value

a data.frame with the supported signatures

See Also

Other plugin.functions: .ROI_plugin_add_status_code_to_db, .ROI_plugin_canonicalize_solution, .ROI_plugin_get_solver_name, .ROI_plugin_register_solver_control, .ROI_plugin_register_solver_method

Examples

Run this code
## ROI_make_LP_signatures
lp_signature <- .ROI_plugin_make_signature( objective = "L",
                                    constraints = "L",
                                    types = c("C"),
                                    bounds = c("X", "V"),
                                    cones = c("free"),
                                    maximum = c(TRUE, FALSE) )

Run the code above in your browser using DataLab