More minor code cleanup.
authorMorgan Deters <mdeters@cs.nyu.edu>
Tue, 17 Jun 2014 22:33:28 +0000 (18:33 -0400)
committerlianah <lianahady@gmail.com>
Thu, 19 Jun 2014 22:24:39 +0000 (18:24 -0400)
src/util/bin_heap.h

index 9238d12a57593d15a2415f882823f43dd82a357d..f8bfe91372d5f9b238af6c4731309443d540b3ab 100644 (file)
@@ -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> >