carl  24.04
Computer ARithmetic Library
StatisticsCollector.cpp
Go to the documentation of this file.
1 #include "StatisticsCollector.h"
2 
3 #include "Statistics.h"
4 
5 namespace carl {
6 namespace statistics {
7 
9  for (auto& s: mStatistics) {
10  if (s->enabled()) {
11  s->collect();
12  }
13  }
14 }
15 
16 }
17 }
carl is the main namespace for the library.
std::vector< std::unique_ptr< Statistics > > mStatistics