summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-02-25 11:50:30 +0000
committeryexo <yexo@openttd.org>2010-02-25 11:50:30 +0000
commit87ff9ebd7bea21cff53e5c4b567c19f376e4ca95 (patch)
tree57f3213b43f479718a2cec5695f8766f4820ebd9 /src/misc
parent09335c74a2bae82f232450d951d3118839a047f5 (diff)
downloadopenttd-87ff9ebd7bea21cff53e5c4b567c19f376e4ca95.tar.xz
(svn r19244) -Codechange: Remove function call if consistency-check is not used (skidd13)
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/binaryheap.hpp38
1 files changed, 23 insertions, 15 deletions
diff --git a/src/misc/binaryheap.hpp b/src/misc/binaryheap.hpp
index bdf3a5737..1c6ac7f72 100644
--- a/src/misc/binaryheap.hpp
+++ b/src/misc/binaryheap.hpp
@@ -12,6 +12,15 @@
#ifndef BINARYHEAP_HPP
#define BINARYHEAP_HPP
+/* Enable it if you suspect binary heap doesn't work well */
+#define BINARYHEAP_CHECK 0
+
+#if BINARYHEAP_CHECK
+ #define CHECK_CONSISTY() CheckConsistency()
+#else
+ #define CHECK_CONSISTY() ;
+#endif
+
/**
* Binary Heap as C++ template.
*
@@ -99,6 +108,17 @@ protected:
return gap;
}
+#if BINARYHEAP_CHECK
+ /** verifies the heap consistency (added during first YAPF debug phase) */
+ FORCEINLINE void CheckConsistency()
+ {
+ for (uint child = 2; child <= items; child++) {
+ uint parent = child / 2;
+ assert(!(*data[child] < *data[parent]));
+ }
+ }
+#endif
+
public:
/** Return the number of items stored in the priority queue.
* @return number of items in the queue */
@@ -137,7 +157,7 @@ public:
/* make place for new item */
uint gap = HeapifyUp(++items, new_item);
data[gap] = new_item;
- CheckConsistency();
+ CHECK_CONSISTY();
}
/** Remove and return the smallest item from the priority queue. */
@@ -154,7 +174,7 @@ public:
/* move last item to the proper place */
if (!IsEmpty()) data[gap] = last;
- CheckConsistency();
+ CHECK_CONSISTY();
return first;
}
@@ -176,7 +196,7 @@ public:
assert(index == items);
items--;
}
- CheckConsistency();
+ CHECK_CONSISTY();
}
/** return index of the item that matches (using &item1 == &item2) the given item. */
@@ -194,18 +214,6 @@ public:
/** Make the priority queue empty.
* All remaining items will remain untouched. */
FORCEINLINE void Clear() { items = 0; }
-
- /** verifies the heap consistency (added during first YAPF debug phase) */
- FORCEINLINE void CheckConsistency()
- {
- /* enable it if you suspect binary heap doesn't work well */
-#if 0
- for (uint child = 2; child <= items; child++) {
- uint parent = child / 2;
- assert(!(*data[child] < *data[parent]));
- }
-#endif
- }
};
#endif /* BINARYHEAP_HPP */