1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Andrew Reynolds, Gereon Kremer |
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 non-linear arithmetic. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "theory/arith/nl/stats.h" |
17 |
|
|
18 |
|
#include "smt/smt_statistics_registry.h" |
19 |
|
|
20 |
|
namespace cvc5 { |
21 |
|
namespace theory { |
22 |
|
namespace arith { |
23 |
|
namespace nl { |
24 |
|
|
25 |
5134 |
NlStats::NlStats() |
26 |
10268 |
: d_mbrRuns(smtStatisticsRegistry().registerInt("nl::mbrRuns")), |
27 |
10268 |
d_checkRuns(smtStatisticsRegistry().registerInt("nl::checkRuns")) |
28 |
|
{ |
29 |
5134 |
} |
30 |
|
|
31 |
|
} // namespace nl |
32 |
|
} // namespace arith |
33 |
|
} // namespace theory |
34 |
29286 |
} // namespace cvc5 |