summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-10-31 00:54:24 +0000
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2012-10-31 00:54:24 +0000
commitf40d0a7cc8d6af511cc0817caf8df3296a59f380 (patch)
treea79f142c5b6fbeaec34978f8da2b2db308a33e79 /src/theory/theory.h
parent5b4c416608bda1df62e1ffe7131648a89882ddc7 (diff)
cleaning up some of the equality query stuff, implemented a new representative selection strategy for quantifier instantiation
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index e51b8594e..195e37154 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -789,7 +789,7 @@ public:
/**
* This is a utility function for constructing a copy of the currently shared terms
- * in a queriable form. As this is
+ * in a queriable form. As this is
*/
std::hash_set<TNode, TNodeHashFunction> currentlySharedTerms() const;
};/* class Theory */
@@ -893,7 +893,6 @@ public:
virtual bool areEqual( Node a, Node b ) { return false; }
virtual bool areDisequal( Node a, Node b ) { return false; }
virtual Node getRepresentative( Node a ) { return a; }
- virtual Node getInternalRepresentative( Node a ) { return getRepresentative( a ); }
virtual eq::EqualityEngine* getEqualityEngine() { return NULL; }
virtual void getEquivalenceClass( Node a, std::vector< Node >& eqc ) {}
public:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback