SMT-RAT  24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
PBPPStatistics.h
Go to the documentation of this file.
1 /**
2  * @file PBPPStatistics.h
3  * @author YOUR NAME <YOUR EMAIL ADDRESS>
4  *
5  * @version 2016-11-23
6  * Created on 2016-11-23.
7  */
8 
9 #pragma once
10 
12 #ifdef SMTRAT_DEVOPTION_Statistics
14 
15 namespace smtrat
16 {
17  class PBPPStatistics : public Statistics
18  {
19  private:
20  public:
21  // Override Statistics::collect.
22  void collect()
23  {
24  }
25  PBPPStatistics( const std::string& _statisticName ):
26  Statistics( )
27  {
28  set_name(_statisticName);
29  }
30  ~PBPPStatistics() {}
31  };
32 }
33 
34 #endif
Class to create the formulas for axioms.
carl::statistics::Statistics Statistics
Definition: Statistics.h:7