summaryrefslogtreecommitdiff
path: root/src/theory/strings/theory_strings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/strings/theory_strings.cpp')
-rw-r--r--src/theory/strings/theory_strings.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/theory/strings/theory_strings.cpp b/src/theory/strings/theory_strings.cpp
index 54c4759a8..142b0006b 100644
--- a/src/theory/strings/theory_strings.cpp
+++ b/src/theory/strings/theory_strings.cpp
@@ -97,6 +97,13 @@ TheoryStrings::TheoryStrings(context::Context* c,
d_false = NodeManager::currentNM()->mkConst( false );
d_cardSize = utils::getAlphabetCardinality();
+
+ ProofChecker* pc = pnm != nullptr ? pnm->getChecker() : nullptr;
+ if (pc != nullptr)
+ {
+ // add checkers
+ d_sProofChecker.registerTo(pc);
+ }
}
TheoryStrings::~TheoryStrings() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback