diff --git a/src/util/lp/binary_heap_priority_queue_def.h b/src/util/lp/binary_heap_priority_queue_def.h index 0d70e5aca..8a39ecdfa 100644 --- a/src/util/lp/binary_heap_priority_queue_def.h +++ b/src/util/lp/binary_heap_priority_queue_def.h @@ -20,7 +20,7 @@ Revision History: #include "util/vector.h" #include "util/lp/binary_heap_priority_queue.h" namespace lp { -// is is the child place in heap +// "i" is the child's place in the heap template void binary_heap_priority_queue::swap_with_parent(unsigned i) { unsigned parent = m_heap[i >> 1]; put_at(i >> 1, m_heap[i]);