SMT-RAT  24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
statistics.h
Go to the documentation of this file.
1 #pragma once
2 
4 
5 namespace smtrat::analyzer {
6 
7 struct AnalyzerStatistics: public Statistics {
8 public:
9  template<typename T>
10  void add(const std::string& key, const T& value) {
11  addKeyValuePair(key, value);
12  }
13 };
14 
15 }
carl::statistics::Statistics Statistics
Definition: Statistics.h:7
void add(const std::string &key, const T &value)
Definition: statistics.h:10