1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Andrew Reynolds |
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 |
|
* Justification stats. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "decision/justify_stats.h" |
17 |
|
|
18 |
|
#include "smt/smt_statistics_registry.h" |
19 |
|
|
20 |
|
namespace cvc5 { |
21 |
|
namespace decision { |
22 |
|
|
23 |
7733 |
JustifyStatistics::JustifyStatistics() |
24 |
7733 |
: d_numStatusNoDecision(smtStatisticsRegistry().registerInt( |
25 |
15466 |
"JustifyStrategy::StatusNoDecision", 0)), |
26 |
7733 |
d_numStatusDecision(smtStatisticsRegistry().registerInt( |
27 |
15466 |
"JustifyStrategy::StatusDecision", 0)), |
28 |
7733 |
d_numStatusBacktrack(smtStatisticsRegistry().registerInt( |
29 |
15466 |
"JustifyStrategy::StatusBacktrack", 0)), |
30 |
7733 |
d_maxStackSize(smtStatisticsRegistry().registerInt( |
31 |
15466 |
"JustifyStrategy::MaxStackSize", 0)), |
32 |
7733 |
d_maxAssertionsSize(smtStatisticsRegistry().registerInt( |
33 |
15466 |
"JustifyStrategy::MaxAssertionsSize", 0)), |
34 |
7733 |
d_maxSkolemDefsSize(smtStatisticsRegistry().registerInt( |
35 |
46398 |
"JustifyStrategy::MaxSkolemDefsSize", 0)) |
36 |
|
{ |
37 |
7733 |
} |
38 |
|
|
39 |
7732 |
JustifyStatistics::~JustifyStatistics() {} |
40 |
|
|
41 |
|
} |
42 |
29517 |
} // namespace cvc5 |