Uses of Class
salvo.jesus.util.HeapNode

Packages that use HeapNode
salvo.jesus.util   
 

Uses of HeapNode in salvo.jesus.util
 

Methods in salvo.jesus.util that return HeapNode
 HeapNode Heap.contains(java.lang.Object object, java.util.Comparator heapnodeobjectcomparator)
          Determines if the given object is encapsulated by one of the nodes in the heap.
 HeapNode Heap.remove()
          Remove the item with the highest priority from the heap.
 

Methods in salvo.jesus.util with parameters of type HeapNode
 void Heap.insert(HeapNode node)
          Add a new item into the heap
 void Heap.setPriority(HeapNode node, double priority)
          Sets the priority of a specific node in the heap, thereby also forcing to fixup the heap to satisfy the heap condition.