summaryrefslogtreecommitdiff
path: root/test/unit/util
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-02 20:38:23 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-02 20:38:23 +0000
commit068107e1d1f705eb9054b4309a26236230687d80 (patch)
tree4c422f3efd6a8319abe426c518f9d2feb7ab5a6d /test/unit/util
parent53176a3d39935bd77f1c057d0b806c380b346e23 (diff)
CDMap -> CDHashMap
CDSet -> CDHashSet
Diffstat (limited to 'test/unit/util')
-rw-r--r--test/unit/util/congruence_closure_white.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit/util/congruence_closure_white.h b/test/unit/util/congruence_closure_white.h
index 187b7dc08..0c14160f7 100644
--- a/test/unit/util/congruence_closure_white.h
+++ b/test/unit/util/congruence_closure_white.h
@@ -20,8 +20,8 @@
#include <sstream>
#include "context/context.h"
-#include "context/cdset.h"
-#include "context/cdmap.h"
+#include "context/cdhashset.h"
+#include "context/cdhashmap.h"
#include "expr/node.h"
#include "expr/kind.h"
#include "expr/node_manager.h"
@@ -34,8 +34,8 @@ using namespace std;
struct MyOutputChannel {
- CDSet<Node, NodeHashFunction> d_notifications;
- CDMap<Node, Node, NodeHashFunction> d_equivalences;
+ CDHashSet<Node, NodeHashFunction> d_notifications;
+ CDHashMap<Node, Node, NodeHashFunction> d_equivalences;
NodeManager* d_nm;
MyOutputChannel(Context* ctxt, NodeManager* nm) :
@@ -50,7 +50,7 @@ struct MyOutputChannel {
}
TNode find(TNode n) {
- CDMap<Node, Node, NodeHashFunction>::iterator i = d_equivalences.find(n);
+ CDHashMap<Node, Node, NodeHashFunction>::iterator i = d_equivalences.find(n);
if(i == d_equivalences.end()) {
return n;
} else {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback