GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/smt/smt_statistics_registry.cpp Lines: 3 3 100.0 %
Date: 2021-05-22 Branches: 2 4 50.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Tim King
4
 *
5
 * This file is part of the cvc5 project.
6
 *
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.
11
 * ****************************************************************************
12
 *
13
 * Accessor for the SmtEngine's StatisticsRegistry.
14
 */
15
16
#include "smt/smt_statistics_registry.h"
17
18
#include "smt/smt_engine_scope.h"
19
#include "util/statistics_stats.h"
20
21
namespace cvc5 {
22
23
4602075
StatisticsRegistry& smtStatisticsRegistry()
24
{
25
4602075
  return smt::SmtScope::currentStatisticsRegistry();
26
}
27
28
28191
}  // namespace cvc5