Example #1
0
        public BreadthFirstSearchNode(NodeStatus status, double value, BreadthFirstSearchNode <TNode> predecessor)
        {
            this.m_Predecessor = predecessor;

            this.m_Status = status;

            this.m_Value = value;
        }
Example #2
0
 public int CompareTo(BreadthFirstSearchNode <TNode> other)
 {
     return(this.Value.CompareTo(other.Value));
 }