Rebuild() 공개 메소드

public Rebuild ( ) : void
리턴 void
예제 #1
0
 /** Rebuild the heap to account for changed node values.
  * Some path types change the target for the H score in the middle of the path calculation,
  * that requires rebuilding the heap to keep it correctly sorted.
  */
 public void RebuildHeap()
 {
     heap.Rebuild();
 }