GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/bags/bags_statistics.cpp Lines: 5 5 100.0 %
Date: 2021-05-22 Branches: 4 8 50.0 %

Line Exec Source
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
9459
BagsStatistics::BagsStatistics()
25
9459
    : d_rewrites(smtStatisticsRegistry().registerHistogram<Rewrite>(
26
9459
        "theory::bags::rewrites"))
27
{
28
9459
}
29
30
}  // namespace bags
31
}  // namespace theory
32
28191
}  // namespace cvc5