LCOV - code coverage report
Current view: top level - buildbot/coverage/build/src/theory/strings - sequences_stats.cpp (source / functions) Hit Total Coverage
Test: coverage.info Lines: 12 12 100.0 %
Date: 2025-01-26 14:42:37 Functions: 1 1 100.0 %
Branches: 0 0 -

           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-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 strings/sequences.
      14                 :            :  */
      15                 :            : 
      16                 :            : #include "theory/strings/sequences_stats.h"
      17                 :            : 
      18                 :            : namespace cvc5::internal {
      19                 :            : namespace theory {
      20                 :            : namespace strings {
      21                 :            : 
      22                 :      50699 : SequencesStatistics::SequencesStatistics(StatisticsRegistry& sr)
      23                 :      50699 :     : d_checkRuns(sr.registerInt("theory::strings::checkRuns")),
      24                 :      50699 :       d_strategyRuns(sr.registerInt("theory::strings::strategyRuns")),
      25                 :            :       d_cdSimplifications(
      26                 :      50699 :           sr.registerHistogram<Kind>("theory::strings::cdSimplifications")),
      27                 :      50699 :       d_reductions(sr.registerHistogram<Kind>("theory::strings::reductions")),
      28                 :            :       d_regexpUnfoldingsPos(
      29                 :      50699 :           sr.registerHistogram<Kind>("theory::strings::regexpUnfoldingsPos")),
      30                 :            :       d_regexpUnfoldingsNeg(
      31                 :      50699 :           sr.registerHistogram<Kind>("theory::strings::regexpUnfoldingsNeg")),
      32                 :      50699 :       d_rewrites(sr.registerHistogram<Rewrite>("theory::strings::rewrites")),
      33                 :      50699 :       d_conflictsEqEngine(sr.registerInt("theory::strings::conflictsEqEngine")),
      34                 :      50699 :       d_conflictsEager(sr.registerInt("theory::strings::conflictsEager")),
      35                 :      50699 :       d_conflictsInfer(sr.registerInt("theory::strings::conflictsInfer"))
      36                 :            : {
      37                 :      50699 : }
      38                 :            : 
      39                 :            : }
      40                 :            : }
      41                 :            : }  // namespace cvc5::internal

Generated by: LCOV version 1.14