summaryrefslogtreecommitdiff
path: root/src/theory/booleans
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/booleans
parent53176a3d39935bd77f1c057d0b806c380b346e23 (diff)
CDMap -> CDHashMap
CDSet -> CDHashSet
Diffstat (limited to 'src/theory/booleans')
-rw-r--r--src/theory/booleans/circuit_propagator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/theory/booleans/circuit_propagator.h b/src/theory/booleans/circuit_propagator.h
index 2f9a8f928..78221a617 100644
--- a/src/theory/booleans/circuit_propagator.h
+++ b/src/theory/booleans/circuit_propagator.h
@@ -28,8 +28,8 @@
#include "context/context.h"
#include "util/hash.h"
#include "expr/node.h"
-#include "context/cdset.h"
-#include "context/cdmap.h"
+#include "context/cdhashset.h"
+#include "context/cdhashmap.h"
#include "context/cdo.h"
namespace CVC4 {
@@ -113,12 +113,12 @@ private:
/** Nodes that have been attached already (computed forward edges for) */
// All the nodes we've visited so far
- context::CDSet<TNode, TNodeHashFunction> d_seen;
+ context::CDHashSet<TNode, TNodeHashFunction> d_seen;
/**
* Assignment status of each node.
*/
- typedef context::CDMap<TNode, AssignmentStatus, TNodeHashFunction> AssignmentMap;
+ typedef context::CDHashMap<TNode, AssignmentStatus, TNodeHashFunction> AssignmentMap;
AssignmentMap d_state;
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback