Learn R Programming

glpkAPI (version 1.3.0)

setBfcpGLPK: Change Basis Factorization Control Parameters

Description

Sets/Changes the values of corresponding members of in the structure glp_bfcp. Consult the GLPK documentation for more detailed information.

Usage

setBfcpGLPK(lp, parm, val)

Arguments

lp

An object of class "'>glpkPtr" as returned by initProbGLPK. This is basically a pointer to a GLPK problem object.

parm

A vector containing integer values or symbolic names of the control parameters to be changed (see glpkConstants, section ‘Control Parameters’).

val

A vector containing the new values for the corresponding control parameters.

Value

NULL

Details

The Arguments parm and val must have the same length. The value val[i] belongs to the parameter parm[i].

References

Based on the package glpk by Lopaka Lee.

The GNU GLPK home page at http://www.gnu.org/software/glpk/glpk.html.

See Also

glpkConstants