Changing a set of TNodes to a set of Nodes in the BV inequality solver. The ref count...
authorTim King <taking@google.com>
Thu, 29 Dec 2016 23:43:04 +0000 (15:43 -0800)
committerTim King <taking@google.com>
Thu, 29 Dec 2016 23:43:04 +0000 (15:43 -0800)
src/theory/bv/bv_subtheory_inequality.h

index 5fbdf74abe5ccbdfa3e50b78b155ca3b4a79d3be..617e3b7614f143860d47498e5cff681be0711af6 100644 (file)
@@ -47,8 +47,8 @@ class InequalitySolver: public SubtheorySolver {
   InequalityGraph d_inequalityGraph;
   context::CDHashMap<Node, TNode, NodeHashFunction> d_explanations;
   context::CDO<bool> d_isComplete;
-  typedef __gnu_cxx::hash_set<TNode, TNodeHashFunction> TNodeSet;
-  TNodeSet d_ineqTerms;
+  typedef __gnu_cxx::hash_set<Node, NodeHashFunction> NodeSet;
+  NodeSet d_ineqTerms;
   bool isInequalityOnly(TNode node);
   bool addInequality(TNode a, TNode b, bool strict, TNode fact);
   Statistics d_statistics;