Click or drag to resize

SimplexModel Class

Represents the result of a simplex algorithm.
Inheritance Hierarchy
SystemObject
  Austra.Library.MVOSimplexModel

Namespace: Austra.Library.MVO
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+e1037fa8802b3ff162e26559d763b73334940b70
Syntax
C#
public class SimplexModel

The SimplexModel type exposes the following members.

Constructors
 NameDescription
Public methodSimplexModel(DVector, Matrix, DVector)Initializes a new instance of the SimplexModel class.
Public methodSimplexModel(DVector, Matrix, DVector, NVector)Initializes a new instance of the SimplexModel class.
Public methodSimplexModel(DVector, Matrix, DVector, Int32)Initializes a new instance of the SimplexModel class.
Public methodSimplexModel(DVector, Matrix, DVector, NVector, String)Initializes and solves a new instance of the SimplexModel class.
Top
Properties
 NameDescription
Public propertyLabelsThe name of the variables.
Public propertyObjectiveObjective function coefficients.
Public propertyValueGets the value of the objective function at the optimal solution.
Public propertyWeightsWeights of variables in the optimal solution.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodStatic memberMinimize(DVector, Matrix, DVector) Initializes and solves a new instance of the SimplexModel class assuming that we want to minimize the objective function instead of maximizing it.
Public methodStatic memberMinimize(DVector, Matrix, DVector, NVector) Initializes and solves a new instance of the SimplexModel class assuming that we want to minimize the objective function instead of maximizing it.
Public methodStatic memberMinimize(DVector, Matrix, DVector, Int32) Initializes and solves a new instance of the SimplexModel class assuming that we want to minimize the objective function instead of maximizing it.
Public methodStatic memberMinimize(DVector, Matrix, DVector, NVector, String) Initializes and solves a new instance of the SimplexModel class assuming that we want to minimize the objective function instead of maximizing it.
Public methodToStringGets a textual representation of the model.
(Overrides ObjectToString)
Top
See Also