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