CspSetOperators.SubsetEq Method (ConstraintSystem, array<Int32[], CspTerm)
[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 if a subset of a set variable.
Namespace: Microsoft.SolverFoundation.Solvers
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function SubsetEq ( _
constraintSolver As ConstraintSystem, _
set1 As Integer(), _
setVar2 As CspTerm _
) As CspTerm
public static CspTerm SubsetEq(
this ConstraintSystem constraintSolver,
int[] set1,
CspTerm setVar2
)
[ExtensionAttribute]
public:
static CspTerm^ SubsetEq(
ConstraintSystem^ constraintSolver,
array<int>^ set1,
CspTerm^ setVar2
)
static member SubsetEq :
constraintSolver:ConstraintSystem *
set1:int[] *
setVar2:CspTerm -> CspTerm
public static function SubsetEq(
constraintSolver : ConstraintSystem,
set1 : int[],
setVar2 : CspTerm
) : CspTerm
Parameters
- constraintSolver
Type: Microsoft.SolverFoundation.Solvers.ConstraintSystem
A solver.
- set1
Type: array<System.Int32[]
A set that is being tested to see if it is a subset of a set variable.
- setVar2
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A set variable that is being tested to see if it is a superset of a set.
Return Value
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A Boolean term that indicates if set1 is a subset of setVar2.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.