GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/decision/justify_stats.cpp Lines: 16 16 100.0 %
Date: 2021-09-15 Branches: 14 28 50.0 %

Line Exec Source
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
7753
JustifyStatistics::JustifyStatistics()
24
7753
    : d_numStatusNoDecision(smtStatisticsRegistry().registerInt(
25
15506
          "JustifyStrategy::StatusNoDecision", 0)),
26
7753
      d_numStatusDecision(smtStatisticsRegistry().registerInt(
27
15506
          "JustifyStrategy::StatusDecision", 0)),
28
7753
      d_numStatusBacktrack(smtStatisticsRegistry().registerInt(
29
15506
          "JustifyStrategy::StatusBacktrack", 0)),
30
7753
      d_maxStackSize(smtStatisticsRegistry().registerInt(
31
15506
          "JustifyStrategy::MaxStackSize", 0)),
32
7753
      d_maxAssertionsSize(smtStatisticsRegistry().registerInt(
33
15506
          "JustifyStrategy::MaxAssertionsSize", 0)),
34
7753
      d_maxSkolemDefsSize(smtStatisticsRegistry().registerInt(
35
46518
          "JustifyStrategy::MaxSkolemDefsSize", 0))
36
{
37
7753
}
38
39
7752
JustifyStatistics::~JustifyStatistics() {}
40
41
}
42
29577
}  // namespace cvc5