summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/sygus_stats.cpp
blob: 19d799eb323bb8a680caa9573585bd05e50113e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds, Tim King
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
 * in the top-level source directory and their institutional affiliations.
 * All rights reserved.  See the file COPYING in the top-level source
 * directory for licensing information.
 * ****************************************************************************
 *
 * A shared statistics class for sygus.
 */

#include "theory/quantifiers/sygus/sygus_stats.h"

#include "smt/smt_statistics_registry.h"

namespace cvc5 {
namespace theory {
namespace quantifiers {

SygusStatistics::SygusStatistics()
    : d_cegqi_lemmas_ce(
        smtStatisticsRegistry().registerInt("SynthEngine::cegqi_lemmas_ce")),
      d_cegqi_lemmas_refine(smtStatisticsRegistry().registerInt(
          "SynthEngine::cegqi_lemmas_refine")),
      d_cegqi_si_lemmas(
          smtStatisticsRegistry().registerInt("SynthEngine::cegqi_lemmas_si")),
      d_solutions(
          smtStatisticsRegistry().registerInt("SynthConjecture::solutions")),
      d_filtered_solutions(smtStatisticsRegistry().registerInt(
          "SynthConjecture::filtered_solutions")),
      d_candidate_rewrites_print(smtStatisticsRegistry().registerInt(
          "SynthConjecture::candidate_rewrites_print")),
      d_enumTermsRewrite(smtStatisticsRegistry().registerInt(
          "SygusEnumerator::enumTermsRewrite")),
      d_enumTermsExampleEval(smtStatisticsRegistry().registerInt(
          "SygusEnumerator::enumTermsEvalExamples")),
      d_enumTerms(
          smtStatisticsRegistry().registerInt("SygusEnumerator::enumTerms"))

{
}

}  // namespace quantifiers
}  // namespace theory
}  // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback