GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/smt/smt_statistics_registry.h Lines: 1 1 100.0 %
Date: 2021-05-24 Branches: 2 6 33.3 %

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 "cvc5_private.h"
17
18
#pragma once
19
20
#include "util/statistics_registry.h"
21
#include "util/statistics_stats.h"
22
23
namespace cvc5 {
24
25
/**
26
 * This returns the StatisticsRegistry attached to the currently in scope
27
 * SmtEngine. This is a synonym for smt::SmtScope::currentStatisticsRegistry().
28
 */
29
StatisticsRegistry& smtStatisticsRegistry();
30
31
28191
}  // namespace cvc5