CspSetOperators.SubsetEq Method (ConstraintSystem, CspTerm, array<Int32[])

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Creates a term that indicates if a set variable is a subset of another set.

Namespace:  Microsoft.SolverFoundation.Solvers
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function SubsetEq ( _
    constraintSolver As ConstraintSystem, _
    setVar1 As CspTerm, _
    set2 As Integer() _
) As CspTerm
public static CspTerm SubsetEq(
    this ConstraintSystem constraintSolver,
    CspTerm setVar1,
    int[] set2
)
[ExtensionAttribute]
public:
static CspTerm^ SubsetEq(
    ConstraintSystem^ constraintSolver, 
    CspTerm^ setVar1, 
    array<int>^ set2
)
static member SubsetEq : 
        constraintSolver:ConstraintSystem * 
        setVar1:CspTerm * 
        set2:int[] -> CspTerm 
public static function SubsetEq(
    constraintSolver : ConstraintSystem, 
    setVar1 : CspTerm, 
    set2 : int[]
) : CspTerm

Parameters

  • set2
    Type: array<System.Int32[]
    A set that is being tested to see if it is a superset of a set variable.

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A Boolean term that indicates if setVar1 is a subset of set2.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ConstraintSystem. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

CspSetOperators Class

SubsetEq Overload

Microsoft.SolverFoundation.Solvers Namespace