Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Andrew Reynolds 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 : : * Theory engine statistics class. 14 : : */ 15 : : 16 : : #include "theory/theory_engine_statistics.h" 17 : : 18 : : namespace cvc5::internal { 19 : : namespace theory { 20 : : 21 : 50285 : TheoryEngineStatistics::TheoryEngineStatistics(StatisticsRegistry& sr) 22 : : : d_combineTheoriesTime( 23 : 50285 : sr.registerTimer("TheoryEngine::combineTheoriesTime")), 24 : 50285 : d_stdEffortChecks(sr.registerInt("TheoryEngine::Checks_Standard")), 25 : 50285 : d_fullEffortChecks(sr.registerInt("TheoryEngine::Checks_Full")), 26 : : d_combineTheoriesCalls( 27 : 50285 : sr.registerInt("TheoryEngine::combineTheoriesCalls")), 28 : 50285 : d_lcEffortChecks(sr.registerInt("TheoryEngine::Checks_Last_Call")) 29 : : { 30 : 50285 : } 31 : : 32 : : } // namespace theory 33 : : } // namespace cvc5::internal