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 |
1543 |
SygusStatistics::SygusStatistics() |
25 |
|
: d_cegqi_lemmas_ce( |
26 |
3086 |
smtStatisticsRegistry().registerInt("SynthEngine::cegqi_lemmas_ce")), |
27 |
1543 |
d_cegqi_lemmas_refine(smtStatisticsRegistry().registerInt( |
28 |
3086 |
"SynthEngine::cegqi_lemmas_refine")), |
29 |
|
d_cegqi_si_lemmas( |
30 |
3086 |
smtStatisticsRegistry().registerInt("SynthEngine::cegqi_lemmas_si")), |
31 |
|
d_solutions( |
32 |
3086 |
smtStatisticsRegistry().registerInt("SynthConjecture::solutions")), |
33 |
1543 |
d_filtered_solutions(smtStatisticsRegistry().registerInt( |
34 |
3086 |
"SynthConjecture::filtered_solutions")), |
35 |
1543 |
d_candidate_rewrites_print(smtStatisticsRegistry().registerInt( |
36 |
3086 |
"SynthConjecture::candidate_rewrites_print")), |
37 |
1543 |
d_enumTermsRewrite(smtStatisticsRegistry().registerInt( |
38 |
3086 |
"SygusEnumerator::enumTermsRewrite")), |
39 |
1543 |
d_enumTermsExampleEval(smtStatisticsRegistry().registerInt( |
40 |
3086 |
"SygusEnumerator::enumTermsEvalExamples")), |
41 |
|
d_enumTerms( |
42 |
13887 |
smtStatisticsRegistry().registerInt("SygusEnumerator::enumTerms")) |
43 |
|
|
44 |
|
{ |
45 |
1543 |
} |
46 |
|
|
47 |
|
} // namespace quantifiers |
48 |
|
} // namespace theory |
49 |
27735 |
} // namespace cvc5 |