ConstraintSystem.CreateDecimalSet Method (array<Double[], Int32, Int32)

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

Creates a domain of allowed real values with default precision in strictly descending order.

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

Syntax

'Declaration
Public Function CreateDecimalSet ( _
    orderedUniqueSet As Double(), _
    from As Integer, _
    count As Integer _
) As CspDomain
public CspDomain CreateDecimalSet(
    double[] orderedUniqueSet,
    int from,
    int count
)
public:
CspDomain^ CreateDecimalSet(
    array<double>^ orderedUniqueSet, 
    int from, 
    int count
)
member CreateDecimalSet : 
        orderedUniqueSet:float[] * 
        from:int * 
        count:int -> CspDomain 
public function CreateDecimalSet(
    orderedUniqueSet : double[], 
    from : int, 
    count : int
) : CspDomain

Parameters

  • orderedUniqueSet
    Type: array<System.Double[]
    The ordered sequences of values to include in the set.
  • from
    Type: System.Int32
    The starting position in orderedUniqueSet.
  • count
    Type: System.Int32
    The number of elements from the starting position to include in the set.

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspDomain
A domain of allowed real values with default precision in strictly descending order.

.NET Framework Security

See Also

Reference

ConstraintSystem Class

CreateDecimalSet Overload

Microsoft.SolverFoundation.Solvers Namespace