summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.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/theory_engine.h
parent53176a3d39935bd77f1c057d0b806c380b346e23 (diff)
CDMap -> CDHashMap
CDSet -> CDHashSet
Diffstat (limited to 'src/theory/theory_engine.h')
-rw-r--r--src/theory/theory_engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 72244a573..4c9309fb6 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -28,7 +28,7 @@
#include "expr/node.h"
#include "expr/command.h"
#include "prop/prop_engine.h"
-#include "context/cdset.h"
+#include "context/cdhashset.h"
#include "theory/theory.h"
#include "theory/substitutions.h"
#include "theory/rewriter.h"
@@ -121,7 +121,7 @@ class TheoryEngine {
* context-dependent set of those theory-propagable literals that
* have been propagated.
*/
- context::CDSet<TNode, TNodeHashFunction> d_hasPropagated;
+ context::CDHashSet<TNode, TNodeHashFunction> d_hasPropagated;
/**
* Statistics for a particular theory.
@@ -311,7 +311,7 @@ class TheoryEngine {
/**
* Map from equalities asserted to a theory, to the theory that can explain them.
*/
- typedef context::CDMap<NodeTheoryPair, NodeTheoryPair, NodeTheoryPairHashFunction> SharedAssertionsMap;
+ typedef context::CDHashMap<NodeTheoryPair, NodeTheoryPair, NodeTheoryPairHashFunction> SharedAssertionsMap;
/**
* A map from asserted facts to where they came from (for explanations).
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback