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