GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/arith/nl/stats.cpp Lines: 5 5 100.0 %
Date: 2021-05-22 Branches: 6 12 50.0 %

Line Exec Source
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
4914
NlStats::NlStats()
26
9828
    : d_mbrRuns(smtStatisticsRegistry().registerInt("nl::mbrRuns")),
27
9828
      d_checkRuns(smtStatisticsRegistry().registerInt("nl::checkRuns"))
28
{
29
4914
}
30
31
}  // namespace nl
32
}  // namespace arith
33
}  // namespace theory
34
28191
}  // namespace cvc5