Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * This file is part of the cvc5 project. 3 : : * 4 : : * Copyright (c) 2009-2026 by the authors listed in the file AUTHORS 5 : : * in the top-level source directory and their institutional affiliations. 6 : : * All rights reserved. See the file COPYING in the top-level source 7 : : * directory for licensing information. 8 : : * **************************************************************************** 9 : : * 10 : : * Statistics for the theory of strings/sequences. 11 : : */ 12 : : 13 : : #include "theory/strings/sequences_stats.h" 14 : : 15 : : namespace cvc5::internal { 16 : : namespace theory { 17 : : namespace strings { 18 : : 19 : 28777 : SequencesStatistics::SequencesStatistics(StatisticsRegistry& sr) 20 : 28777 : : d_checkRuns(sr.registerInt("theory::strings::checkRuns")), 21 : 28777 : d_strategyRuns(sr.registerInt("theory::strings::strategyRuns")), 22 : : d_cdSimplifications( 23 : 28777 : sr.registerHistogram<Kind>("theory::strings::cdSimplifications")), 24 : 28777 : d_reductions(sr.registerHistogram<Kind>("theory::strings::reductions")), 25 : : d_regexpUnfoldingsPos( 26 : 28777 : sr.registerHistogram<Kind>("theory::strings::regexpUnfoldingsPos")), 27 : : d_regexpUnfoldingsNeg( 28 : 28777 : sr.registerHistogram<Kind>("theory::strings::regexpUnfoldingsNeg")), 29 : 28777 : d_rewrites(sr.registerHistogram<Rewrite>("theory::strings::rewrites")), 30 : 28777 : d_conflictsEqEngine(sr.registerInt("theory::strings::conflictsEqEngine")), 31 : 28777 : d_conflictsEager(sr.registerInt("theory::strings::conflictsEager")), 32 : 28777 : d_conflictsInfer(sr.registerInt("theory::strings::conflictsInfer")) 33 : : { 34 : 28777 : } 35 : : 36 : : } // namespace strings 37 : : } // namespace theory 38 : : } // namespace cvc5::internal