1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Mudathir Mohamed |
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 |
|
* Statistics for the theory of bags. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "theory/bags/bags_statistics.h" |
17 |
|
|
18 |
|
#include "smt/smt_statistics_registry.h" |
19 |
|
|
20 |
|
namespace cvc5 { |
21 |
|
namespace theory { |
22 |
|
namespace bags { |
23 |
|
|
24 |
9924 |
BagsStatistics::BagsStatistics() |
25 |
9924 |
: d_rewrites(smtStatisticsRegistry().registerHistogram<Rewrite>( |
26 |
9924 |
"theory::bags::rewrites")) |
27 |
|
{ |
28 |
9924 |
} |
29 |
|
|
30 |
|
} // namespace bags |
31 |
|
} // namespace theory |
32 |
29499 |
} // namespace cvc5 |