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 : : * A shared statistics class for sygus. 11 : : */ 12 : : 13 : : #include "theory/quantifiers/sygus/sygus_stats.h" 14 : : 15 : : namespace cvc5::internal { 16 : : namespace theory { 17 : : namespace quantifiers { 18 : : 19 : 6233 : SygusStatistics::SygusStatistics(StatisticsRegistry& sr) 20 : 6233 : : d_solutions(sr.registerInt("SynthConjecture::solutions")), 21 : : d_filtered_solutions( 22 : 6233 : sr.registerInt("SynthConjecture::filtered_solutions")), 23 : 6233 : d_enumTermsRewrite(sr.registerInt("SygusEnumerator::enumTermsRewrite")), 24 : : d_enumTermsExampleEval( 25 : 6233 : sr.registerInt("SygusEnumerator::enumTermsEvalExamples")), 26 : 6233 : d_enumTerms(sr.registerInt("SygusEnumerator::enumTerms")) 27 : : 28 : : { 29 : 6233 : } 30 : : 31 : : } // namespace quantifiers 32 : : } // namespace theory 33 : : } // namespace cvc5::internal