GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/quantifiers/quantifiers_statistics.cpp Lines: 22 22 100.0 %
Date: 2021-09-29 Branches: 22 44 50.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Tim King, Andrew Reynolds, Morgan Deters
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
 * Implementation of quantifiers statistics class.
14
 */
15
16
#include "theory/quantifiers/quantifiers_statistics.h"
17
18
#include "smt/smt_statistics_registry.h"
19
20
namespace cvc5 {
21
namespace theory {
22
namespace quantifiers {
23
24
6271
QuantifiersStatistics::QuantifiersStatistics()
25
6271
    : d_time(smtStatisticsRegistry().registerTimer(
26
12542
        "theory::QuantifiersEngine::time")),
27
6271
      d_qcf_time(smtStatisticsRegistry().registerTimer(
28
12542
          "theory::QuantifiersEngine::time_qcf")),
29
6271
      d_ematching_time(smtStatisticsRegistry().registerTimer(
30
12542
          "theory::QuantifiersEngine::time_ematching")),
31
6271
      d_num_quant(smtStatisticsRegistry().registerInt(
32
12542
          "QuantifiersEngine::Num_Quantifiers")),
33
6271
      d_instantiation_rounds(smtStatisticsRegistry().registerInt(
34
12542
          "QuantifiersEngine::Rounds_Instantiation_Full")),
35
6271
      d_instantiation_rounds_lc(smtStatisticsRegistry().registerInt(
36
12542
          "QuantifiersEngine::Rounds_Instantiation_Last_Call")),
37
      d_triggers(
38
12542
          smtStatisticsRegistry().registerInt("QuantifiersEngine::Triggers")),
39
6271
      d_simple_triggers(smtStatisticsRegistry().registerInt(
40
12542
          "QuantifiersEngine::Triggers_Simple")),
41
6271
      d_multi_triggers(smtStatisticsRegistry().registerInt(
42
12542
          "QuantifiersEngine::Triggers_Multi")),
43
6271
      d_red_alpha_equiv(smtStatisticsRegistry().registerInt(
44
62710
          "QuantifiersEngine::Reductions_Alpha_Equivalence"))
45
{
46
6271
}
47
48
}  // namespace quantifiers
49
}  // namespace theory
50
22746
}  // namespace cvc5