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 : : * Theory engine statistics class. 11 : : */ 12 : : 13 : : #include "theory/theory_engine_statistics.h" 14 : : 15 : : namespace cvc5::internal { 16 : : namespace theory { 17 : : 18 : 49957 : TheoryEngineStatistics::TheoryEngineStatistics(StatisticsRegistry& sr) 19 : : : d_combineTheoriesTime( 20 : 49957 : sr.registerTimer("TheoryEngine::combineTheoriesTime")), 21 : 49957 : d_stdEffortChecks(sr.registerInt("TheoryEngine::Checks_Standard")), 22 : 49957 : d_fullEffortChecks(sr.registerInt("TheoryEngine::Checks_Full")), 23 : : d_combineTheoriesCalls( 24 : 49957 : sr.registerInt("TheoryEngine::combineTheoriesCalls")), 25 : 49957 : d_lcEffortChecks(sr.registerInt("TheoryEngine::Checks_Last_Call")) 26 : : { 27 : 49957 : } 28 : : 29 : : } // namespace theory 30 : : } // namespace cvc5::internal