5 #ifdef SMTRAT_DEVOPTION_Statistics
12 std::size_t mExplanationCalled = 0;
13 std::size_t mExplanationSuccess = 0;
15 bool enabled()
const {
16 return (mExplanationCalled > 0) || (mExplanationSuccess > 0);
19 Statistics::addKeyValuePair(
"explanation_called", mExplanationCalled);
20 Statistics::addKeyValuePair(
"explanation_success", mExplanationSuccess);
23 void explanationCalled() {
27 void explanationSuccess() {
28 ++mExplanationSuccess;
Class to create the formulas for axioms.
carl::statistics::Statistics Statistics