summaryrefslogtreecommitdiff
path: root/src/theory/arrays/theory_arrays.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arrays/theory_arrays.h')
-rw-r--r--src/theory/arrays/theory_arrays.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/theory/arrays/theory_arrays.h b/src/theory/arrays/theory_arrays.h
index d699617e2..fcb6ee382 100644
--- a/src/theory/arrays/theory_arrays.h
+++ b/src/theory/arrays/theory_arrays.h
@@ -152,8 +152,8 @@ private:
typedef context::CDList<TNode, context::ContextMemoryAllocator<TNode> > CTNodeListAlloc;
- typedef context::CDMap<Node, CTNodeListAlloc*, NodeHashFunction> CNodeTNodesMap;
- typedef context::CDMap<TNode, List<TNode>*, TNodeHashFunction > EqLists;
+ typedef context::CDHashMap<Node, CTNodeListAlloc*, NodeHashFunction> CNodeTNodesMap;
+ typedef context::CDHashMap<TNode, List<TNode>*, TNodeHashFunction > EqLists;
typedef __gnu_cxx::hash_map<TNode, CTNodeList*, TNodeHashFunction> NodeTNodesMap;
@@ -174,7 +174,7 @@ private:
/** List of disequalities needed to construct explanations for propagated
* row lemmas */
- context::CDMap<TNode, std::pair<TNode, TNode>, TNodeHashFunction> d_explanations;
+ context::CDHashMap<TNode, std::pair<TNode, TNode>, TNodeHashFunction> d_explanations;
/**
* stores the conflicting disequality (still need to call construct
@@ -447,9 +447,9 @@ public:
void propagate(Effort e) {
- Trace("arrays-prop")<<"Propagating \n";
+ // Trace("arrays-prop")<<"Propagating \n";
- context::CDList<TNode>::const_iterator it = d_prop_queue.begin();
+ // context::CDList<TNode>::const_iterator it = d_prop_queue.begin();
/*
for(; it!= d_prop_queue.end(); it++) {
TNode eq = *it;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback