New statistics registry (#6210)
[cvc5.git] / src / util / statistics_public.h
1 /********************* */
2 /*! \file statistics_public.h
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Gereon Kremer
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8 ** in the top-level source directory and their institutional affiliations.
9 ** All rights reserved. See the file COPYING in the top-level source
10 ** directory for licensing information.\endverbatim
11 **
12 ** \brief Registration of public statistics
13 **
14 ** Registration and documentation for all public statistics.
15 **/
16
17 #include "cvc4_private_library.h"
18
19 #ifndef CVC4__UTIL__STATISTICS_PUBLIC_H
20 #define CVC4__UTIL__STATISTICS_PUBLIC_H
21
22 namespace cvc5 {
23
24 class StatisticsRegistry;
25
26 /**
27 * Preregisters all public (non-expert) statistics.
28 */
29 void registerPublicStatistics(StatisticsRegistry& reg);
30
31 } // namespace cvc5
32
33 #endif