mirror of
https://github.com/Z3Prover/z3
synced 2025-06-25 15:23:41 +00:00
grammar
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
c986dfe97b
commit
fd8f972cac
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ Revision History:
|
||||||
#include "util/vector.h"
|
#include "util/vector.h"
|
||||||
#include "util/lp/binary_heap_priority_queue.h"
|
#include "util/lp/binary_heap_priority_queue.h"
|
||||||
namespace lp {
|
namespace lp {
|
||||||
// is is the child place in heap
|
// "i" is the child's place in the heap
|
||||||
template <typename T> void binary_heap_priority_queue<T>::swap_with_parent(unsigned i) {
|
template <typename T> void binary_heap_priority_queue<T>::swap_with_parent(unsigned i) {
|
||||||
unsigned parent = m_heap[i >> 1];
|
unsigned parent = m_heap[i >> 1];
|
||||||
put_at(i >> 1, m_heap[i]);
|
put_at(i >> 1, m_heap[i]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue