summaryrefslogtreecommitdiff
path: root/src/util/trans_closure.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/util/trans_closure.h
parent53176a3d39935bd77f1c057d0b806c380b346e23 (diff)
CDMap -> CDHashMap
CDSet -> CDHashSet
Diffstat (limited to 'src/util/trans_closure.h')
-rw-r--r--src/util/trans_closure.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/trans_closure.h b/src/util/trans_closure.h
index a551d4a31..3cb3385dd 100644
--- a/src/util/trans_closure.h
+++ b/src/util/trans_closure.h
@@ -26,7 +26,7 @@
#include <map>
#include "context/cdlist.h"
-#include "context/cdmap.h"
+#include "context/cdhashmap.h"
#include "context/cdo.h"
namespace CVC4 {
@@ -128,7 +128,7 @@ public:
*/
class TransitiveClosureNode : public TransitiveClosure{
context::CDO< unsigned > d_counter;
- context::CDMap< Node, unsigned, NodeHashFunction > nodeMap;
+ context::CDHashMap< Node, unsigned, NodeHashFunction > nodeMap;
//for debugging
context::CDList< std::pair< Node, Node > > currEdges;
public:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback