summaryrefslogtreecommitdiff
path: root/src/theory/theory_rewriter.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-04-21 21:42:08 -0500
committerGitHub <noreply@github.com>2021-04-22 02:42:08 +0000
commit89620a0d73e7134437a39d742e91de11a08a4962 (patch)
tree46b37970a7d3f74317f8e255b6aefa9cfae127b1 /src/theory/theory_rewriter.cpp
parent90cde45ee963b994054f96f97111684cce808d82 (diff)
Move expand definition from Theory to TheoryRewriter (#6408)
This is work towards eliminating global calls to getCurrentSmtEngine()->expandDefinition. The next step will be to add Rewriter::expandDefinition.
Diffstat (limited to 'src/theory/theory_rewriter.cpp')
-rw-r--r--src/theory/theory_rewriter.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/theory/theory_rewriter.cpp b/src/theory/theory_rewriter.cpp
index 75bcbff0e..42e9148c2 100644
--- a/src/theory/theory_rewriter.cpp
+++ b/src/theory/theory_rewriter.cpp
@@ -60,5 +60,11 @@ TrustNode TheoryRewriter::rewriteEqualityExtWithProof(Node node)
return TrustNode::null();
}
+TrustNode TheoryRewriter::expandDefinition(Node node)
+{
+ // no expansion
+ return TrustNode::null();
+}
+
} // namespace theory
} // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback