SimplexModel Class

Represents the result of a simplex algorithm.

Definition

Namespace: Austra.Library.MVO
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public class SimplexModel
Inheritance
Object    SimplexModel

Constructors

SimplexModel(DVector, Matrix, DVector)Initializes a new instance of the SimplexModel class.
SimplexModel(DVector, Matrix, DVector, NVector)Initializes a new instance of the SimplexModel class.
SimplexModel(DVector, Matrix, DVector, Int32)Initializes a new instance of the SimplexModel class.
SimplexModel(DVector, Matrix, DVector, NVector, String)Initializes and solves a new instance of the SimplexModel class.

Properties

LabelsThe name of the variables.
ObjectiveObjective function coefficients.
ValueGets the value of the objective function at the optimal solution.
WeightsWeights of variables in the optimal solution.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
Minimize(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.
Minimize(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.
Minimize(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.
Minimize(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.
ToStringGets a textual representation of the model.
(Overrides ObjectToString)

See Also