Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Andrew Reynolds, Andres Noetzli 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 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 strings/sequences. 14 : : */ 15 : : 16 : : #include "theory/strings/sequences_stats.h" 17 : : 18 : : namespace cvc5::internal { 19 : : namespace theory { 20 : : namespace strings { 21 : : 22 : 49172 : SequencesStatistics::SequencesStatistics(StatisticsRegistry& sr) 23 : 49172 : : d_checkRuns(sr.registerInt("theory::strings::checkRuns")), 24 : 49172 : d_strategyRuns(sr.registerInt("theory::strings::strategyRuns")), 25 : : d_cdSimplifications( 26 : 49172 : sr.registerHistogram<Kind>("theory::strings::cdSimplifications")), 27 : 49172 : d_reductions(sr.registerHistogram<Kind>("theory::strings::reductions")), 28 : : d_regexpUnfoldingsPos( 29 : 49172 : sr.registerHistogram<Kind>("theory::strings::regexpUnfoldingsPos")), 30 : : d_regexpUnfoldingsNeg( 31 : 49172 : sr.registerHistogram<Kind>("theory::strings::regexpUnfoldingsNeg")), 32 : 49172 : d_rewrites(sr.registerHistogram<Rewrite>("theory::strings::rewrites")), 33 : 49172 : d_conflictsEqEngine(sr.registerInt("theory::strings::conflictsEqEngine")), 34 : 49172 : d_conflictsEager(sr.registerInt("theory::strings::conflictsEager")), 35 : 49172 : d_conflictsInfer(sr.registerInt("theory::strings::conflictsInfer")) 36 : : { 37 : 49172 : } 38 : : 39 : : } 40 : : } 41 : : } // namespace cvc5::internal