summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2018-07-26 13:13:43 -0700
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-07-26 15:13:43 -0500
commitfc913810a1ef8269d4f75f492631ec8d7f5dcab9 (patch)
treec52bfe824d6b4c7be728a8def5f2c5f0c219889f /src
parent8db4b7f5a0a7c3299313668e77bcf3944b8e5a01 (diff)
Changing the arithmetic static learner to use CDHashMap. This is 2/3 PRs for deprecating CDTrailHashMap. (#2207)
Diffstat (limited to 'src')
-rw-r--r--src/theory/arith/arith_static_learner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/arith_static_learner.h b/src/theory/arith/arith_static_learner.h
index 2318da25d..a6b57411b 100644
--- a/src/theory/arith/arith_static_learner.h
+++ b/src/theory/arith/arith_static_learner.h
@@ -22,7 +22,7 @@
#include <set>
-#include "context/cdtrail_hashmap.h"
+#include "context/cdhashmap.h"
#include "context/context.h"
#include "theory/arith/arith_utilities.h"
#include "util/statistics_registry.h"
@@ -37,7 +37,7 @@ private:
/**
* Map from a node to it's minimum and maximum.
*/
- typedef context::CDTrailHashMap<Node, DeltaRational, NodeHashFunction> CDNodeToMinMaxMap;
+ typedef context::CDHashMap<Node, DeltaRational, NodeHashFunction> CDNodeToMinMaxMap;
CDNodeToMinMaxMap d_minMap;
CDNodeToMinMaxMap d_maxMap;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback