summaryrefslogtreecommitdiff
path: root/src/theory/sets/theory_sets.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-10-26 16:23:58 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-10-26 16:23:58 -0500
commit031722bee8682005bd4c8700ef78b5f893fc48fe (patch)
tree46a936a1bd20ea2cc588df0d3205cf7eb0fd4177 /src/theory/sets/theory_sets.cpp
parente79e64329ce7d6df0003cab28dadb9b8bcc6f9ca (diff)
New implementation of sets+cardinality. Merge Paul Meng's relation solver as extension of sets solver, add regressions.
Diffstat (limited to 'src/theory/sets/theory_sets.cpp')
-rw-r--r--src/theory/sets/theory_sets.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/theory/sets/theory_sets.cpp b/src/theory/sets/theory_sets.cpp
index bdbc964c6..52afe05e2 100644
--- a/src/theory/sets/theory_sets.cpp
+++ b/src/theory/sets/theory_sets.cpp
@@ -63,7 +63,7 @@ EqualityStatus TheorySets::getEqualityStatus(TNode a, TNode b) {
}
Node TheorySets::getModelValue(TNode node) {
- return d_internal->getModelValue(node);
+ return Node::null();
}
void TheorySets::preRegisterTerm(TNode node) {
@@ -82,6 +82,10 @@ void TheorySets::setMasterEqualityEngine(eq::EqualityEngine* eq) {
d_internal->setMasterEqualityEngine(eq);
}
+bool TheorySets::isEntailed( Node n, bool pol ) {
+ return d_internal->isEntailed( n, pol );
+}
+
}/* CVC4::theory::sets namespace */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback