projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7fba3b
)
Changing a set of TNodes to a set of Nodes in the BV inequality solver. The ref count...
author
Tim King
<taking@google.com>
Thu, 29 Dec 2016 23:43:04 +0000
(15:43 -0800)
committer
Tim King
<taking@google.com>
Thu, 29 Dec 2016 23:43:04 +0000
(15:43 -0800)
src/theory/bv/bv_subtheory_inequality.h
patch
|
blob
|
history
diff --git
a/src/theory/bv/bv_subtheory_inequality.h
b/src/theory/bv/bv_subtheory_inequality.h
index 5fbdf74abe5ccbdfa3e50b78b155ca3b4a79d3be..617e3b7614f143860d47498e5cff681be0711af6 100644
(file)
--- a/
src/theory/bv/bv_subtheory_inequality.h
+++ b/
src/theory/bv/bv_subtheory_inequality.h
@@
-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> T
NodeSet;
-
T
NodeSet 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;