Learn R Programming

sybil (version 2.0.0)

addSolver: Add a New Mathematical Programming Solver to sybil

Description

Make a new mathematical programming solver available to sybil via the SYBIL_SETTINGS command.

Usage

addSolver(solver, method, probType)

Arguments

solver

A single character string giving the name of the desiered solver.

method

A character vector of algorithms supported by the solver given in solver.

probType

A list of hte same length as method containing a vector of character strings for each method which types of problems can be solved with that method: method[i] of solver can solve problems of type probType[[i]]. Problem types could be "lp": linear programming, "mip": mixed integer programming or "qp": quadratic programming.

Value

The function returns NULL invisibly.

Details

The parameters to the algorithms given in method are set to NA, which means, the default parameters of the solver software will be used. If a solver already exists, an error message will be given.

See Also

SYBIL_SETTINGS