summaryrefslogtreecommitdiff
path: root/src/util/bin_heap.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2014-06-17 18:33:28 -0400
committerlianah <lianahady@gmail.com>2014-06-19 18:24:39 -0400
commit5206b2fd6e290ff27f682d97f6248acf7ecd2810 (patch)
tree2e5358969586118d4ba99b9df042844ad0199419 /src/util/bin_heap.h
parentd1648964c5c7631e05a4430ad4c71fddac7686fc (diff)
More minor code cleanup.
Diffstat (limited to 'src/util/bin_heap.h')
-rw-r--r--src/util/bin_heap.h28
1 files changed, 21 insertions, 7 deletions
diff --git a/src/util/bin_heap.h b/src/util/bin_heap.h
index 9238d12a5..f8bfe9137 100644
--- a/src/util/bin_heap.h
+++ b/src/util/bin_heap.h
@@ -1,11 +1,25 @@
+/********************* */
+/*! \file bin_heap.h
+ ** \verbatim
+ ** Original author: Tim King
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2014 New York University and The University of Iowa
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief An implementation of a binary heap
+ **
+ ** An implementation of a binary heap.
+ ** Attempts to roughly follow the contract of Boost's d_ary_heap.
+ ** (http://www.boost.org/doc/libs/1_49_0/doc/html/boost/heap/d_ary_heap.html)
+ ** Also attempts to generalize ext/pd_bs/priority_queue.
+ ** (http://gcc.gnu.org/onlinedocs/libstdc++/ext/pb_ds/priority_queue.html)
+ **/
+
+#include "cvc4_private.h"
-/**
- * An implementation of a binary heap.
- * Attempts to roughly follow the contract of Boost's d_ary_heap.
- * (http://www.boost.org/doc/libs/1_49_0/doc/html/boost/heap/d_ary_heap.html)
- * Also attempts to generalize ext/pd_bs/priority_queue.
- * (http://gcc.gnu.org/onlinedocs/libstdc++/ext/pb_ds/priority_queue.html)
- */
namespace CVC4 {
template <class Elem, class CmpFcn = std::less<Elem> >
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback