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 |
9853 |
QuantifiersStatistics::QuantifiersStatistics() |
25 |
9853 |
: d_time(smtStatisticsRegistry().registerTimer( |
26 |
19706 |
"theory::QuantifiersEngine::time")), |
27 |
9853 |
d_qcf_time(smtStatisticsRegistry().registerTimer( |
28 |
19706 |
"theory::QuantifiersEngine::time_qcf")), |
29 |
9853 |
d_ematching_time(smtStatisticsRegistry().registerTimer( |
30 |
19706 |
"theory::QuantifiersEngine::time_ematching")), |
31 |
9853 |
d_num_quant(smtStatisticsRegistry().registerInt( |
32 |
19706 |
"QuantifiersEngine::Num_Quantifiers")), |
33 |
9853 |
d_instantiation_rounds(smtStatisticsRegistry().registerInt( |
34 |
19706 |
"QuantifiersEngine::Rounds_Instantiation_Full")), |
35 |
9853 |
d_instantiation_rounds_lc(smtStatisticsRegistry().registerInt( |
36 |
19706 |
"QuantifiersEngine::Rounds_Instantiation_Last_Call")), |
37 |
|
d_triggers( |
38 |
19706 |
smtStatisticsRegistry().registerInt("QuantifiersEngine::Triggers")), |
39 |
9853 |
d_simple_triggers(smtStatisticsRegistry().registerInt( |
40 |
19706 |
"QuantifiersEngine::Triggers_Simple")), |
41 |
9853 |
d_multi_triggers(smtStatisticsRegistry().registerInt( |
42 |
19706 |
"QuantifiersEngine::Triggers_Multi")), |
43 |
9853 |
d_red_alpha_equiv(smtStatisticsRegistry().registerInt( |
44 |
98530 |
"QuantifiersEngine::Reductions_Alpha_Equivalence")) |
45 |
|
{ |
46 |
9853 |
} |
47 |
|
|
48 |
|
} // namespace quantifiers |
49 |
|
} // namespace theory |
50 |
29340 |
} // namespace cvc5 |