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