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-2024 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 : : * Implementation of quantifiers statistics class. 14 : : */ 15 : : 16 : : #include "theory/quantifiers/quantifiers_statistics.h" 17 : : 18 : : namespace cvc5::internal { 19 : : namespace theory { 20 : : namespace quantifiers { 21 : : 22 : 50019 : QuantifiersStatistics::QuantifiersStatistics(StatisticsRegistry& sr) 23 : 50019 : : d_time(sr.registerTimer("theory::QuantifiersEngine::time")), 24 : : d_cbqi_time(sr.registerTimer( 25 : 50019 : "theory::QuantifiersEngine::time_conflict_based_inst")), 26 : : d_ematching_time( 27 : 50019 : sr.registerTimer("theory::QuantifiersEngine::time_ematching")), 28 : 50019 : d_num_quant(sr.registerInt("QuantifiersEngine::Num_Quantifiers")), 29 : : d_instantiation_rounds( 30 : 50019 : sr.registerInt("QuantifiersEngine::Rounds_Instantiation_Full")), 31 : : d_instantiation_rounds_lc( 32 : 50019 : sr.registerInt("QuantifiersEngine::Rounds_Instantiation_Last_Call")), 33 : 50019 : d_triggers(sr.registerInt("QuantifiersEngine::Triggers")), 34 : 50019 : d_simple_triggers(sr.registerInt("QuantifiersEngine::Triggers_Simple")), 35 : 50019 : d_multi_triggers(sr.registerInt("QuantifiersEngine::Triggers_Multi")), 36 : : d_red_alpha_equiv( 37 : 50019 : sr.registerInt("QuantifiersEngine::Reductions_Alpha_Equivalence")) 38 : : { 39 : 50019 : } 40 : : 41 : : } // namespace quantifiers 42 : : } // namespace theory 43 : : } // namespace cvc5::internal