public BreadthFirstSearchNode(NodeStatus status, double value, BreadthFirstSearchNode <TNode> predecessor) { this.m_Predecessor = predecessor; this.m_Status = status; this.m_Value = value; }
public int CompareTo(BreadthFirstSearchNode <TNode> other) { return(this.Value.CompareTo(other.Value)); }