Click or drag to resize
Accord.NET (logo)

PriorityOrder Enumeration

Namespace:  Accord.Collections
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public enum PriorityOrder
Members
  Member nameValueDescription
Minimum0 Minimum order. In Minimum Priority Queues, items with smaller priority numbers receive higher priority and are the ones that will be dequeued first (i.e. similar to NICE number in UNIX systems).
Maximum1 MAximum order. In Maximum Priority Queues, items with higher priority numbers receive higher priority and are the ones that will be dequeued first.
See Also