Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Mudathir Mohamed, Andrew Reynolds 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2025 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 : : namespace cvc5::internal { 19 : : namespace theory { 20 : : namespace bags { 21 : : 22 : 51347 : BagsStatistics::BagsStatistics(StatisticsRegistry& sr) 23 : 51347 : : d_rewrites(sr.registerHistogram<Rewrite>("theory::bags::rewrites")) 24 : : { 25 : 51347 : } 26 : : 27 : : } // namespace bags 28 : : } // namespace theory 29 : : } // namespace cvc5::internal