LCOV - code coverage report
Current view: top level - buildbot/coverage/build/src/decision - justify_stats.cpp (source / functions) Hit Total Coverage
Test: coverage.info Lines: 10 10 100.0 %
Date: 2026-03-19 10:41:11 Functions: 2 2 100.0 %
Branches: 0 0 -

           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                 :            :  * Justification stats.
      11                 :            :  */
      12                 :            : 
      13                 :            : #include "decision/justify_stats.h"
      14                 :            : 
      15                 :            : namespace cvc5::internal {
      16                 :            : namespace decision {
      17                 :            : 
      18                 :      40595 : JustifyStatistics::JustifyStatistics(StatisticsRegistry& sr)
      19                 :            :     : d_numStatusNoDecision(
      20                 :      40595 :           sr.registerInt("JustifyStrategy::StatusNoDecision")),
      21                 :      40595 :       d_numStatusDecision(sr.registerInt("JustifyStrategy::StatusDecision")),
      22                 :      40595 :       d_numStatusBacktrack(sr.registerInt("JustifyStrategy::StatusBacktrack")),
      23                 :      40595 :       d_maxStackSize(sr.registerInt("JustifyStrategy::MaxStackSize")),
      24                 :      40595 :       d_maxAssertionsSize(sr.registerInt("JustifyStrategy::MaxAssertionsSize")),
      25                 :      40595 :       d_maxSkolemDefsSize(sr.registerInt("JustifyStrategy::MaxSkolemDefsSize")),
      26                 :      40595 :       d_time(sr.registerTimer("JustifyStrategy::getNextTime"))
      27                 :            : {
      28                 :      40595 : }
      29                 :            : 
      30                 :      40403 : JustifyStatistics::~JustifyStatistics() {}
      31                 :            : 
      32                 :            : }
      33                 :            : }  // namespace cvc5::internal

Generated by: LCOV version 1.14