Click or drag to resize

LinearProgramming Class

Allows to solve linear programming problems.
Inheritance Hierarchy
SystemObject
  FinMath.NumericalOptimization.ConstrainedLinearProgramming

Namespace:  FinMath.NumericalOptimization.Constrained
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public sealed class LinearProgramming : INumericalOptimization, 
	IConstrainedProgramming

The LinearProgramming type exposes the following members.

Constructors
  NameDescription
Public methodLinearProgramming(Vector, Matrix, Vector, Matrix, Vector, Vector, Vector)
Creates new instance of class LinearProgramming.
Public methodLinearProgramming(Vector, SparseMatrix, Vector, SparseMatrix, Vector, Vector, Vector)
Creates new instance of class LinearProgramming.
Top
Properties
  NameDescription
Public propertyComputeLagrangeMultipliers
Whether to compute Lagrange multipliers or not.
Public propertyIterationsDone
Number of iterations done.
Public propertyIterationsLimit
Maximum number of iterations allowed, a positive integer.
Public propertyLagrangeMultipliersLinearEqualities
A vector of Lagrange multipliers for linear equalities.
Public propertyLagrangeMultipliersLinearInequalities
A vector of Lagrange multipliers for linear inequalities.
Public propertyLagrangeMultipliersLowerBounds
A vector of Lagrange multipliers for upper bounds.
Public propertyLagrangeMultipliersUpperBounds
A vector of Lagrange multipliers for lower bounds.
Public propertyMinimumPoint
Minimum point of objective function.
Public propertyMinimumValue
Minimum value of objective function.
Public propertyStatus
Status of algorithm termination.
Public propertyTolerance
Algorithm termination tolerance, a positive scalar.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMinimize
Finds minimum of constrained multivariable function.
Public methodMinimize(Vector)
Finds minimum of constrained multivariable function.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventLogMessage
An event that occurs every time the LinearProgramming wants to send a log message.
Top
See Also