summaryrefslogtreecommitdiff
path: root/src/theory/bv/theory_bv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv/theory_bv.cpp')
-rw-r--r--src/theory/bv/theory_bv.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index fec93e033..f0981044b 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -495,7 +495,36 @@ void TheoryBV::propagate(Effort e) {
}
}
+eq::EqualityEngine * TheoryBV::getEqualityEngine() {
+ return NULL;
+}
+bool TheoryBV::getCurrentSubstitution( int effort, std::vector< Node >& vars, std::vector< Node >& subs, std::map< Node, std::vector< Node > >& exp ) {
+#if 0
+ CoreSolver* core = (CoreSolver*)d_subtheoryMap[SUB_CORE];
+ if( core ){
+ //get the constant equivalence classes
+ bool retVal = false;
+ for( unsigned i=0; i<vars.size(); i++ ){
+ Node n = vars[i];
+ if( core->getEqualityEngine()->hasTerm( n ) ){
+ Node nr = core->getEqualityEngine()->getRepresenative( n );
+ if( nr.isConst() ){
+ subs.push_back( nr );
+ exp[n].push_back( n.eqNode( nr ) );
+ retVal = true;
+ }else{
+ subs.push_back( n );
+ }
+ }
+ }
+ //return true if the substitution is non-trivial
+ return retVal;
+ }
+#endif
+ return false;
+}
+
Theory::PPAssertStatus TheoryBV::ppAssert(TNode in, SubstitutionMap& outSubstitutions) {
switch(in.getKind()) {
case kind::EQUAL:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback