equal
deleted
inserted
replaced
544 } |
544 } |
545 } |
545 } |
546 return v; |
546 return v; |
547 } |
547 } |
548 |
548 |
|
549 ///Next node to be processed. |
|
550 |
|
551 ///Next node to be processed. |
|
552 /// |
|
553 ///\return The next node to be processed or INVALID if the priority heap |
|
554 /// is empty. |
|
555 Node NextNode() |
|
556 { |
|
557 return _heap.empty()?_heap.top():INVALID; |
|
558 } |
|
559 |
549 ///\brief Returns \c false if there are nodes |
560 ///\brief Returns \c false if there are nodes |
550 ///to be processed in the priority heap |
561 ///to be processed in the priority heap |
551 /// |
562 /// |
552 ///Returns \c false if there are nodes |
563 ///Returns \c false if there are nodes |
553 ///to be processed in the priority heap |
564 ///to be processed in the priority heap |