writeMps: Write MPS Files

View source: R/writeMps.R

writeMpsR Documentation

Write MPS Files

Description

This function writes MPS files - the standard format for Linear Programming problems.

Usage

writeMps( file, cvec, bvec, Amat, name="LP" )

Arguments

file

a character string naming the file to write.

cvec

vector c.

bvec

vector b.

Amat

matrix A.

name

an optional name for the Linear Programming problem.

Details

The exported LP can be solved by running other software on this MPS file (e.g. lp_solve, see http://lpsolve.sourceforge.net/5.5/).

Author(s)

Arne Henningsen

See Also

solveLP, readMps

Examples


## example of Steinhauser, Langbehn and Peters (1992)
## Production activities
cvec <- c(1800, 600, 600)  # gross margins
names(cvec) <- c("Cows","Bulls","Pigs")

## Constraints (quasi-fix factors)
bvec <- c(40, 90, 2500)  # endowment
names(bvec) <- c("Land","Stable","Labor")

## Needs of Production activities
Amat <- rbind( c(  0.7,   0.35,   0 ),
               c(  1.5,   1,      3 ),
               c( 50,    12.5,   20 ) )

## Write to MPS file
writeMps( "steinh.mps", cvec, bvec, Amat, "Steinhauser" )

## remove the MPS file
file.remove( "steinh.mps" )

linprog documentation built on March 18, 2022, 5:45 p.m.

Related to writeMps in linprog...