CspSetOperators.ConstantDecimalSet Method

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

Creates a constant decimal set.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ConstantDecimalSet ( _
    solver As ConstraintSystem, _
    ParamArray subset As Double() _
) As CspTerm
public static CspTerm ConstantDecimalSet(
    this ConstraintSystem solver,
    params double[] subset
)
[ExtensionAttribute]
public:
static CspTerm^ ConstantDecimalSet(
    ConstraintSystem^ solver, 
    ... array<double>^ subset
)
static member ConstantDecimalSet : 
        solver:ConstraintSystem * 
        subset:float[] -> CspTerm 
public static function ConstantDecimalSet(
    solver : ConstraintSystem, 
    ... subset : double[]
) : CspTerm

Parameters

  • subset
    Type: array<System.Double[]
    An array of unique decimals.

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspTerm
A term that represents a constant decimal 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

See Also

Reference

CspSetOperators Class

Microsoft.SolverFoundation.Solvers Namespace