3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-07-27 08:46:20 -07:00
parent d3e1d250a7
commit 6558999cef
5 changed files with 11 additions and 13 deletions

View file

@ -52,7 +52,6 @@ class heap : private LT {
}
}
#ifdef Z3DEBUG
// Return true if the value can be inserted in the heap. That is, the vector m_value2indices is big enough to store this value.
bool is_valid_value(int v) const {
SASSERT(v >= 0 && v < static_cast<int>(m_value2indices.size()));
@ -75,7 +74,6 @@ public:
return check_invariant_core(1);
}
#endif
private:
void move_up(int idx) {