summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-07-25 16:56:34 -0700
committerAndres Noetzli <andres.noetzli@gmail.com>2018-07-25 16:56:34 -0700
commit12f062a502e25978700cca0d1abb09a8ba81e543 (patch)
tree3a86cb3e24c02e189c05a2efeaaa89a06aa18704 /src/theory
parentd01aea38d45c8242a39be95c5c634182c6b3a902 (diff)
Changing ArithIteUtils to use CDInsertHashMap. (#2206)
This is 1/3 PRs for deprecating CDTrailHashMap.
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/arith/arith_ite_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/arith_ite_utils.h b/src/theory/arith/arith_ite_utils.h
index 69801919f..7950ef05f 100644
--- a/src/theory/arith/arith_ite_utils.h
+++ b/src/theory/arith/arith_ite_utils.h
@@ -26,7 +26,7 @@
#include "expr/node.h"
#include "context/cdo.h"
-#include "context/cdtrail_hashmap.h"
+#include "context/cdinsert_hashmap.h"
namespace CVC4 {
namespace theory {
@@ -57,7 +57,7 @@ class ArithIteUtils {
Integer d_one;
context::CDO<unsigned> d_subcount;
- typedef context::CDTrailHashMap<Node, Node, NodeHashFunction> CDNodeMap;
+ typedef context::CDInsertHashMap<Node, Node, NodeHashFunction> CDNodeMap;
CDNodeMap d_skolems;
typedef std::map<Node, std::set<Node> > ImpMap;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback