goalprog (version 1.0-2)

llgpout: Obtain solution to the LLGP problem

Description

This function returns the optimal decision variables, negative deviation variables, positive deviation variables, objective function values, objective target values and the achievement function values.

Usage

llgpout(tab, coefficients, targets)

Arguments

tab
a list of named components that specifies the modified simplex tableau
coefficients
a matrix with the coefficients of the linear objective functions
targets
A vector of target values for the objective functions

Value

  • An object of class 'llgpout' that is a list with five named components
  • xA numeric vector with the values of the decision variables
  • nA numeric vector with the values of the negative deviation variables
  • pA numeric vector with the values of the positive deviation variables
  • fA numeric vector with the values of the linear objective functions
  • aA numeric vector with the values of the achievement functions

References

Ignizio, J. P. (1976). Goal Programming and Extensions, Lexington Books, D. C. Heath and Company.

See Also

llgptab

Examples

Run this code
data( ignizio.example.3.3 )
soln <- llgp( coefficients, targets, achievements )
out <- llgpout( soln$tab, coefficients, targets )

Run the code above in your browser using DataLab