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 : : * Statistics for non-linear arithmetic. 11 : : */ 12 : : 13 : : #include "theory/arith/nl/stats.h" 14 : : 15 : : namespace cvc5::internal { 16 : : namespace theory { 17 : : namespace arith { 18 : : namespace nl { 19 : : 20 : 33982 : NlStats::NlStats(StatisticsRegistry& sr) 21 : 33982 : : d_mbrRuns(sr.registerInt("nl::mbrRuns")), 22 : 33982 : d_checkRuns(sr.registerInt("nl::checkRuns")) 23 : : { 24 : 33982 : } 25 : : 26 : : } // namespace nl 27 : : } // namespace arith 28 : : } // namespace theory 29 : : } // namespace cvc5::internal