summaryrefslogtreecommitdiff
path: root/src/expr/attribute_internals.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/expr/attribute_internals.h
parent53176a3d39935bd77f1c057d0b806c380b346e23 (diff)
CDMap -> CDHashMap
CDSet -> CDHashSet
Diffstat (limited to 'src/expr/attribute_internals.h')
-rw-r--r--src/expr/attribute_internals.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/expr/attribute_internals.h b/src/expr/attribute_internals.h
index b359b1666..70535cf1c 100644
--- a/src/expr/attribute_internals.h
+++ b/src/expr/attribute_internals.h
@@ -27,7 +27,7 @@
#include <ext/hash_map>
-#include "context/cdmap.h"
+#include "context/cdhashmap.h"
namespace CVC4 {
namespace expr {
@@ -365,12 +365,12 @@ public:
*/
template <class value_type>
class CDAttrHash :
- public context::CDMap<std::pair<uint64_t, NodeValue*>,
+ public context::CDHashMap<std::pair<uint64_t, NodeValue*>,
value_type,
AttrHashStrategy> {
public:
CDAttrHash(context::Context* ctxt) :
- context::CDMap<std::pair<uint64_t, NodeValue*>,
+ context::CDHashMap<std::pair<uint64_t, NodeValue*>,
value_type,
AttrHashStrategy>(ctxt) {
}
@@ -382,12 +382,12 @@ public:
*/
template <>
class CDAttrHash<bool> :
- protected context::CDMap<NodeValue*,
+ protected context::CDHashMap<NodeValue*,
uint64_t,
AttrHashBoolStrategy> {
/** A "super" type, like in Java, for easy reference below. */
- typedef context::CDMap<NodeValue*, uint64_t, AttrHashBoolStrategy> super;
+ typedef context::CDHashMap<NodeValue*, uint64_t, AttrHashBoolStrategy> super;
/**
* BitAccessor allows us to return a bit "by reference." Of course,
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback