aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/Priority Queue/StablePriorityQueueNode.cs
blob: c794aa0d0223f82374d5f302a1779f36da35e758 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Priority_Queue
{
    public class StablePriorityQueueNode : FastPriorityQueueNode
    {
        /// <summary>
        /// Represents the order the node was inserted in
        /// </summary>
        public long InsertionIndex { get; internal set; }
    }
}