summaryrefslogtreecommitdiff
path: root/src/theory/strings/sequences_stats.cpp
blob: b27df959ec7ab8e190d1fe35423d76416d10134f (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
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds, Andres Noetzli
 *
 * 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.
 * ****************************************************************************
 *
 * Statistics for the theory of strings/sequences.
 */

#include "theory/strings/sequences_stats.h"

#include "smt/smt_statistics_registry.h"

namespace cvc5 {
namespace theory {
namespace strings {

SequencesStatistics::SequencesStatistics()
    : d_checkRuns("theory::strings::checkRuns", 0),
      d_strategyRuns("theory::strings::strategyRuns", 0),
      d_inferencesNoPf("theory::strings::inferencesNoPf"),
      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_conflictsEager("theory::strings::conflictsEager", 0),
      d_conflictsInfer("theory::strings::conflictsInfer", 0)
{
  smtStatisticsRegistry()->registerStat(&d_checkRuns);
  smtStatisticsRegistry()->registerStat(&d_strategyRuns);
  smtStatisticsRegistry()->registerStat(&d_inferencesNoPf);
  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_conflictsEager);
  smtStatisticsRegistry()->registerStat(&d_conflictsInfer);
}

SequencesStatistics::~SequencesStatistics()
{
  smtStatisticsRegistry()->unregisterStat(&d_checkRuns);
  smtStatisticsRegistry()->unregisterStat(&d_strategyRuns);
  smtStatisticsRegistry()->unregisterStat(&d_inferencesNoPf);
  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_conflictsEager);
  smtStatisticsRegistry()->unregisterStat(&d_conflictsInfer);
}

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