CspListOperators.CreatePowerList Method

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

Creates a power list to use as the domain for baseline.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function CreatePowerList ( _
    solver As ConstraintSystem, _
    key As Object, _
    baseline As CspDomain, _
    maxLength As Integer _
) As CspPowerList
public static CspPowerList CreatePowerList(
    this ConstraintSystem solver,
    Object key,
    CspDomain baseline,
    int maxLength
)
[ExtensionAttribute]
public:
static CspPowerList^ CreatePowerList(
    ConstraintSystem^ solver, 
    Object^ key, 
    CspDomain^ baseline, 
    int maxLength
)
static member CreatePowerList : 
        solver:ConstraintSystem * 
        key:Object * 
        baseline:CspDomain * 
        maxLength:int -> CspPowerList 
public static function CreatePowerList(
    solver : ConstraintSystem, 
    key : Object, 
    baseline : CspDomain, 
    maxLength : int
) : CspPowerList

Parameters

  • key
    Type: System.Object
    A key that is used to refer to the list operator.
  • maxLength
    Type: System.Int32
    The maximum length for the power list.

Return Value

Type: Microsoft.SolverFoundation.Solvers.CspPowerList
A power list to use as the domain for baseline.

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

CspListOperators Class

Microsoft.SolverFoundation.Solvers Namespace