Example #1
0
 public int Compare(AStarNode <V> x, AStarNode <V> y)
 {
     return(x.TotalValue - y.TotalValue);
 }
Example #2
0
 public int CompareTo(AStarNode <V> other)
 {
     return(this.TotalValue - other.TotalValue);
 }