SMT-RAT  24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
CoveringNGStatistics.cpp
Go to the documentation of this file.
1 #include "CoveringNGStatistics.h"
2 
3 #ifdef SMTRAT_DEVOPTION_Statistics
4 namespace smtrat::covering_ng{
5  CoveringNGStatistics &statistics() {
6  static CoveringNGStatistics &stats = statistics_get<CoveringNGStatistics>("smtrat-coveringng");
7  return stats;
8  }
9 }
10 #endif