1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Andrew Reynolds, Tim King |
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 |
|
* A shared statistics class for sygus. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "theory/quantifiers/sygus/sygus_stats.h" |
17 |
|
|
18 |
|
#include "smt/smt_statistics_registry.h" |
19 |
|
|
20 |
|
namespace cvc5 { |
21 |
|
namespace theory { |
22 |
|
namespace quantifiers { |
23 |
|
|
24 |
1228 |
SygusStatistics::SygusStatistics() |
25 |
|
: d_solutions( |
26 |
2456 |
smtStatisticsRegistry().registerInt("SynthConjecture::solutions")), |
27 |
1228 |
d_filtered_solutions(smtStatisticsRegistry().registerInt( |
28 |
2456 |
"SynthConjecture::filtered_solutions")), |
29 |
1228 |
d_candidate_rewrites_print(smtStatisticsRegistry().registerInt( |
30 |
2456 |
"SynthConjecture::candidate_rewrites_print")), |
31 |
1228 |
d_enumTermsRewrite(smtStatisticsRegistry().registerInt( |
32 |
2456 |
"SygusEnumerator::enumTermsRewrite")), |
33 |
1228 |
d_enumTermsExampleEval(smtStatisticsRegistry().registerInt( |
34 |
2456 |
"SygusEnumerator::enumTermsEvalExamples")), |
35 |
|
d_enumTerms( |
36 |
7368 |
smtStatisticsRegistry().registerInt("SygusEnumerator::enumTerms")) |
37 |
|
|
38 |
|
{ |
39 |
1228 |
} |
40 |
|
|
41 |
|
} // namespace quantifiers |
42 |
|
} // namespace theory |
43 |
29502 |
} // namespace cvc5 |