make.lp: Make LP

View source: R/make.lp.R

make.lpR Documentation

Make LP

Description

Create a new lpSolve linear program model object.

Usage

make.lp(nrow = 0, ncol = 0, verbose = "neutral")

Arguments

nrow

a nonnegative integer value specifying the number of constaints in the linear program.

ncol

a nonnegative integer value specifying the number of decision variables in the linear program.

verbose

a character string controlling the level of error reporting. The default value "neutral" is no error reporting. Use "normal" or "full" for more comprehensive error reporting. See the verbose entry in lp.control.options for a complete description of this argument and its possible values.

Value

an lpSolve linear program model object. Specifically an R external pointer with class lpExtPtr.

Author(s)

Kjell Konis kjell.konis@me.com

References

https://lpsolve.sourceforge.net/5.5/index.htm

Examples

lps.model <- make.lp(4, 3)

lpSolveAPI documentation built on Sept. 3, 2023, 5:07 p.m.