GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/quantifiers/quantifiers_statistics.cpp Lines: 22 22 100.0 %
Date: 2021-08-01 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
9838
QuantifiersStatistics::QuantifiersStatistics()
25
9838
    : d_time(smtStatisticsRegistry().registerTimer(
26
19676
        "theory::QuantifiersEngine::time")),
27
9838
      d_qcf_time(smtStatisticsRegistry().registerTimer(
28
19676
          "theory::QuantifiersEngine::time_qcf")),
29
9838
      d_ematching_time(smtStatisticsRegistry().registerTimer(
30
19676
          "theory::QuantifiersEngine::time_ematching")),
31
9838
      d_num_quant(smtStatisticsRegistry().registerInt(
32
19676
          "QuantifiersEngine::Num_Quantifiers")),
33
9838
      d_instantiation_rounds(smtStatisticsRegistry().registerInt(
34
19676
          "QuantifiersEngine::Rounds_Instantiation_Full")),
35
9838
      d_instantiation_rounds_lc(smtStatisticsRegistry().registerInt(
36
19676
          "QuantifiersEngine::Rounds_Instantiation_Last_Call")),
37
      d_triggers(
38
19676
          smtStatisticsRegistry().registerInt("QuantifiersEngine::Triggers")),
39
9838
      d_simple_triggers(smtStatisticsRegistry().registerInt(
40
19676
          "QuantifiersEngine::Triggers_Simple")),
41
9838
      d_multi_triggers(smtStatisticsRegistry().registerInt(
42
19676
          "QuantifiersEngine::Triggers_Multi")),
43
9838
      d_red_alpha_equiv(smtStatisticsRegistry().registerInt(
44
98380
          "QuantifiersEngine::Reductions_Alpha_Equivalence"))
45
{
46
9838
}
47
48
}  // namespace quantifiers
49
}  // namespace theory
50
29280
}  // namespace cvc5