summaryrefslogtreecommitdiff
path: root/src/theory/strings/sequences_stats.cpp
blob: 502d05353603f8b0050e83bfcd99a05d09bdac87 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*********************                                                        */
/*! \file sequences_stats.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds, Andres Noetzli
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2020 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.\endverbatim
 **
 ** \brief Statistics for the theory of strings/sequences
 **/


#include "theory/strings/sequences_stats.h"

#include "smt/smt_statistics_registry.h"

namespace CVC4 {
namespace theory {
namespace strings {

SequencesStatistics::SequencesStatistics()
    : d_checkRuns("theory::strings::checkRuns", 0),
      d_strategyRuns("theory::strings::strategyRuns", 0),
      d_inferences("theory::strings::inferences"),
      d_cdSimplifications("theory::strings::cdSimplifications"),
      d_reductions("theory::strings::reductions"),
      d_regexpUnfoldingsPos("theory::strings::regexpUnfoldingsPos"),
      d_regexpUnfoldingsNeg("theory::strings::regexpUnfoldingsNeg"),
      d_rewrites("theory::strings::rewrites"),
      d_conflictsEqEngine("theory::strings::conflictsEqEngine", 0),
      d_conflictsEagerPrefix("theory::strings::conflictsEagerPrefix", 0),
      d_conflictsInfer("theory::strings::conflictsInfer", 0),
      d_lemmasEagerPreproc("theory::strings::lemmasEagerPreproc", 0),
      d_lemmasCmiSplit("theory::strings::lemmasCmiSplit", 0),
      d_lemmasRegisterTerm("theory::strings::lemmasRegisterTerm", 0),
      d_lemmasRegisterTermAtomic("theory::strings::lemmasRegisterTermAtomic",
                                 0),
      d_lemmasInfer("theory::strings::lemmasInfer", 0)
{
  smtStatisticsRegistry()->registerStat(&d_checkRuns);
  smtStatisticsRegistry()->registerStat(&d_strategyRuns);
  smtStatisticsRegistry()->registerStat(&d_inferences);
  smtStatisticsRegistry()->registerStat(&d_cdSimplifications);
  smtStatisticsRegistry()->registerStat(&d_reductions);
  smtStatisticsRegistry()->registerStat(&d_regexpUnfoldingsPos);
  smtStatisticsRegistry()->registerStat(&d_regexpUnfoldingsNeg);
  smtStatisticsRegistry()->registerStat(&d_rewrites);
  smtStatisticsRegistry()->registerStat(&d_conflictsEqEngine);
  smtStatisticsRegistry()->registerStat(&d_conflictsEagerPrefix);
  smtStatisticsRegistry()->registerStat(&d_conflictsInfer);
  smtStatisticsRegistry()->registerStat(&d_lemmasEagerPreproc);
  smtStatisticsRegistry()->registerStat(&d_lemmasCmiSplit);
  smtStatisticsRegistry()->registerStat(&d_lemmasRegisterTerm);
  smtStatisticsRegistry()->registerStat(&d_lemmasRegisterTermAtomic);
  smtStatisticsRegistry()->registerStat(&d_lemmasInfer);
}

SequencesStatistics::~SequencesStatistics()
{
  smtStatisticsRegistry()->unregisterStat(&d_checkRuns);
  smtStatisticsRegistry()->unregisterStat(&d_strategyRuns);
  smtStatisticsRegistry()->unregisterStat(&d_inferences);
  smtStatisticsRegistry()->unregisterStat(&d_cdSimplifications);
  smtStatisticsRegistry()->unregisterStat(&d_reductions);
  smtStatisticsRegistry()->unregisterStat(&d_regexpUnfoldingsPos);
  smtStatisticsRegistry()->unregisterStat(&d_regexpUnfoldingsNeg);
  smtStatisticsRegistry()->unregisterStat(&d_rewrites);
  smtStatisticsRegistry()->unregisterStat(&d_conflictsEqEngine);
  smtStatisticsRegistry()->unregisterStat(&d_conflictsEagerPrefix);
  smtStatisticsRegistry()->unregisterStat(&d_conflictsInfer);
  smtStatisticsRegistry()->unregisterStat(&d_lemmasEagerPreproc);
  smtStatisticsRegistry()->unregisterStat(&d_lemmasCmiSplit);
  smtStatisticsRegistry()->unregisterStat(&d_lemmasRegisterTerm);
  smtStatisticsRegistry()->unregisterStat(&d_lemmasRegisterTermAtomic);
  smtStatisticsRegistry()->unregisterStat(&d_lemmasInfer);
}

}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback