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