summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 1482259e1..2210caf6a 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -728,7 +728,8 @@ void TheoryEngine::notifyRestart() {
CVC4_FOR_EACH_THEORY;
}
-void TheoryEngine::ppStaticLearn(TNode in, NodeBuilder<>& learned) {
+void TheoryEngine::ppStaticLearn(TNode in, NodeBuilder& learned)
+{
// Reset the interrupt flag
d_interrupted = false;
@@ -1639,7 +1640,7 @@ theory::TrustNode TheoryEngine::getExplanation(
}
else
{
- NodeBuilder<> conjunction(kind::AND);
+ NodeBuilder conjunction(kind::AND);
std::set<TNode>::const_iterator it = exp.begin();
std::set<TNode>::const_iterator it_end = exp.end();
while (it != it_end)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback