Use symbol manager for unsat cores (#5468)
[cvc5.git] / src / smt / smt_statistics_registry.cpp
1 /********************* */
2 /*! \file smt_statistics_registry.cpp
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Tim King
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2020 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 Accessor for the SmtEngine's StatisticsRegistry.
13 **
14 ** Accessor for the SmtEngine's StatisticsRegistry.
15 **/
16
17
18 #include "smt/smt_statistics_registry.h"
19
20 #include "smt/smt_engine_scope.h"
21 #include "util/statistics_registry.h"
22
23 namespace CVC4 {
24
25 StatisticsRegistry* smtStatisticsRegistry() {
26 return smt::SmtScope::currentStatisticsRegistry();
27 }
28
29 }/* CVC4 namespace */