MathProgExtensionsforall(Set, Set, Set) Method

Creates a forall sets expression for a constraint.
C#
Constraint conDesign = forall(i, j, k) | x[i, j, k] <= M * y[i, j];

Definition

Namespace: Orx.MathProg
Assembly: Orx.MathProg (in Orx.MathProg.dll) Version: 1.0.0
C#
public static ForAllSets forall(
	Set i,
	Set j,
	Set k
)

Parameters

i  Set
First index of the forall sets expression.
j  Set
Second index of the forall sets expression.
k  Set
Third index of the forall sets expression.

Return Value

ForAllSets

See Also