Learn R Programming

clpAPI (version 1.3.1)

loadMatrixCLP: Load Constraint Matrix

Description

Low level interface function to the COIN-OR Clp function Clp_loadProblem. Consult the COIN-OR Clp documentation for more detailed information.

Usage

loadMatrixCLP(lp, ncols, nrows, ia, ja, ra)

Arguments

lp

An object of class "'>clpPtr" as returned by initProbCLP. This is basically a pointer to a COIN-OR Clp problem object.

ncols

Number of Columns.

nrows

Number of Rows.

ia

Row indices in the constraint matrix.

ja

Column starts in constraint matrix.

ra

Non zero elements of the constraint matrix.

Value

NULL

Details

Interface to the C function loadMatrix which calls the COIN-OR Clp function Clp_loadProblem.

References

The COIN-OR Clp home page at https://projects.coin-or.org/Clp