summaryrefslogtreecommitdiff
path: root/src/theory/substitutions.h
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 /src/theory/substitutions.h
parent53176a3d39935bd77f1c057d0b806c380b346e23 (diff)
CDMap -> CDHashMap
CDSet -> CDHashSet
Diffstat (limited to 'src/theory/substitutions.h')
-rw-r--r--src/theory/substitutions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/substitutions.h b/src/theory/substitutions.h
index 1ade4815d..27c1a2b69 100644
--- a/src/theory/substitutions.h
+++ b/src/theory/substitutions.h
@@ -28,7 +28,7 @@
#include "expr/node.h"
#include "context/context.h"
#include "context/cdo.h"
-#include "context/cdmap.h"
+#include "context/cdhashmap.h"
#include "util/hash.h"
namespace CVC4 {
@@ -46,7 +46,7 @@ class SubstitutionMap {
public:
- typedef context::CDMap<Node, Node, NodeHashFunction> NodeMap;
+ typedef context::CDHashMap<Node, Node, NodeHashFunction> NodeMap;
typedef NodeMap::iterator iterator;
typedef NodeMap::const_iterator const_iterator;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback