GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/quantifiers/sygus/sygus_stats.cpp Lines: 13 13 100.0 %
Date: 2021-09-15 Branches: 14 28 50.0 %

Line Exec Source
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
1233
SygusStatistics::SygusStatistics()
25
    : d_solutions(
26
2466
          smtStatisticsRegistry().registerInt("SynthConjecture::solutions")),
27
1233
      d_filtered_solutions(smtStatisticsRegistry().registerInt(
28
2466
          "SynthConjecture::filtered_solutions")),
29
1233
      d_candidate_rewrites_print(smtStatisticsRegistry().registerInt(
30
2466
          "SynthConjecture::candidate_rewrites_print")),
31
1233
      d_enumTermsRewrite(smtStatisticsRegistry().registerInt(
32
2466
          "SygusEnumerator::enumTermsRewrite")),
33
1233
      d_enumTermsExampleEval(smtStatisticsRegistry().registerInt(
34
2466
          "SygusEnumerator::enumTermsEvalExamples")),
35
      d_enumTerms(
36
7398
          smtStatisticsRegistry().registerInt("SygusEnumerator::enumTerms"))
37
38
{
39
1233
}
40
41
}  // namespace quantifiers
42
}  // namespace theory
43
29577
}  // namespace cvc5