NVBIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
priority_deque_verify.hpp
Go to the documentation of this file.
1 #ifndef PRIORITY_DEQUE_VERIFY_HPP_
2 #define PRIORITY_DEQUE_VERIFY_HPP_
3 
4 #include "priority_deque.hpp"
5 #include "interval_heap.hpp"
6 
7 // Thouroughly checks a priority deque for heap corruption and returns the
8 // first instance of corruption (or the end iterator if there is none).
9 // Note: Assumes comparison object is default-constructed.
10 template <typename T, typename S, typename C>
13 {
14  C compare;
16 }
17 
18 
19 
20 #endif // PRIORITY_DEQUE_VERIFY_HPP_