summaryrefslogtreecommitdiff
path: root/src/decision/justify_stats.h
blob: 6e53a83df4b5f655e8358ffa82423ca6c632e5b1 (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
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds
 *
 * 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.
 * ****************************************************************************
 *
 * Justification stats.
 */

#include "cvc5_private.h"

#ifndef CVC5__DECISION__JUSTIFY_STATS_H
#define CVC5__DECISION__JUSTIFY_STATS_H

#include "util/statistics_registry.h"

namespace cvc5 {
namespace decision {

class JustifyStatistics
{
 public:
  JustifyStatistics();
  ~JustifyStatistics();
  /** Number of times we considered an assertion not leading to a decision */
  IntStat d_numStatusNoDecision;
  /** Number of times we considered an assertion that led to a decision */
  IntStat d_numStatusDecision;
  /** Number of times we considered an assertion that led to backtracking */
  IntStat d_numStatusBacktrack;
  /** Maximum stack size we considered */
  IntStat d_maxStackSize;
  /** Maximum assertion size we considered */
  IntStat d_maxAssertionsSize;
  /** Maximum skolem definition size we considered */
  IntStat d_maxSkolemDefsSize;
};

}
}  // namespace cvc5

#endif /* CVC5__DECISION__JUSTIFY_STATS_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback