ConstraintSolverParams.UserOrderVariables Property

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

Gets or sets a list of variables to search breadth-first in priority order.

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

Syntax

'Declaration
Public Property UserOrderVariables As ReadOnlyCollection(Of CspTerm)
public ReadOnlyCollection<CspTerm> UserOrderVariables { get; internal set; }
public:
property ReadOnlyCollection<CspTerm^>^ UserOrderVariables {
    ReadOnlyCollection<CspTerm^>^ get ();
    internal: void set (ReadOnlyCollection<CspTerm^>^ value);
}
member UserOrderVariables : ReadOnlyCollection<CspTerm> with get, internal set
function get UserOrderVariables () : ReadOnlyCollection<CspTerm>
internal function set UserOrderVariables (value : ReadOnlyCollection<CspTerm>)

Property Value

Type: System.Collections.ObjectModel.ReadOnlyCollection<CspTerm>
The list of search variables.

Remarks

If the accessor methods on the UserOrderVariables property is called multiple times, the subsequent calls append terms to the list. This means that appended terms are searched later than those already in the list.

.NET Framework Security

See Also

Reference

ConstraintSolverParams Class

Microsoft.SolverFoundation.Solvers Namespace