Interface for the coefficients for a linear constraint in a non-linear optimization
problem. The interface is an abstraction of a vector of real numbers representing the
coefficients of a linear constraint and thus defines the indexer property
[int index]. This interface allows for both sparse and dense implementations.
Namespace:
CenterSpace.NMath.Analysis
Assembly:
NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public interface ILinearConstraintCoefficients : ICloneable,
IEquatable<ILinearConstraintCoefficients> |
| Visual Basic (Declaration) |
|---|
Public Interface ILinearConstraintCoefficients _
Implements ICloneable, IEquatable(Of ILinearConstraintCoefficients) |
| Visual C++ |
|---|
public interface class ILinearConstraintCoefficients : ICloneable,
IEquatable<ILinearConstraintCoefficients^> |
See Also