Example #1
0
 public int CompareTo([AllowNull] AStarNode <T> other)
 {
     return(Compare(this, other));
 }
Example #2
0
 public int Compare(AStarNode <T> x, AStarNode <T> y)
 {
     return(x.FScore - y.FScore);
 }