MathModelSolutionVarIndicesAndValuesOf(VarD3) Method

Returns Some of a map of indices to solution values of 3-dimensional variable provided that:
  • the solution IsFeasible, and
  • the queried var belongs to the solved model.
Returns None otherwise.

See VarIndicesAndValuesOf(VarD2) for a documentation corresponding to two-index variables.

Definition

Namespace: Orx.MathProg.Solvers
Assembly: Orx.MathProg (in Orx.MathProg.dll) Version: 1.0.0
C#
public Opt<Dictionary<(int , int , int ), double>> VarIndicesAndValuesOf(
	VarD3 var
)

Parameters

var  VarD3
Variable to query value of.

Return Value

OptDictionaryValueTupleInt32, Int32, Int32, Double

See Also