summaryrefslogtreecommitdiff
path: root/src/util/stats_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/stats_utils.h')
-rw-r--r--src/util/stats_utils.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/util/stats_utils.h b/src/util/stats_utils.h
new file mode 100644
index 000000000..df692af1f
--- /dev/null
+++ b/src/util/stats_utils.h
@@ -0,0 +1,35 @@
+/********************* */
+/*! \file stats_utils.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Gereon Kremer
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
+ ** in the top-level source directory and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Statistic utilities
+ **
+ ** Statistic utilities
+ **/
+
+#include "cvc4_private_library.h"
+
+#ifndef CVC4__UTIL__STATS_UTILS_H
+#define CVC4__UTIL__STATS_UTILS_H
+
+#include <iosfwd>
+
+namespace CVC4 {
+
+namespace timer_stat_detail {
+struct duration;
+}
+
+std::ostream& operator<<(std::ostream& os,
+ const timer_stat_detail::duration& dur) CVC4_PUBLIC;
+
+} // namespace CVC4
+
+#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback