summaryrefslogtreecommitdiff
path: root/src/theory/booleans
diff options
context:
space:
mode:
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