CspSetOperators.ConstantIntegerSet Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Creates a constant integer set.
Namespace: Microsoft.SolverFoundation.Solvers
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ConstantIntegerSet ( _
solver As ConstraintSystem, _
ParamArray subset As Integer() _
) As CspTerm
public static CspTerm ConstantIntegerSet(
this ConstraintSystem solver,
params int[] subset
)
[ExtensionAttribute]
public:
static CspTerm^ ConstantIntegerSet(
ConstraintSystem^ solver,
... array<int>^ subset
)
static member ConstantIntegerSet :
solver:ConstraintSystem *
subset:int[] -> CspTerm
public static function ConstantIntegerSet(
solver : ConstraintSystem,
... subset : int[]
) : CspTerm
Parameters
- solver
Type: Microsoft.SolverFoundation.Solvers.ConstraintSystem
A solver.
- subset
Type: array<System.Int32[]
An array of unique integers.
Return Value
Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that represents a constant integer set.
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.