Britbot
PriorityQueue/PriorityQueueNode.cs
Go to the documentation of this file.
00001 namespace Britbot.PriorityQueue
00002 {
00003     public class PriorityQueueNode
00004     {
00005         #region Fields & Properies
00006 
00010         public double Priority { get; set; }
00011 
00016         public long InsertionIndex { get; set; }
00017 
00022         public int QueueIndex { get; set; }
00023 
00024         #endregion
00025     }
00026 }