projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8db4b7f
)
Changing the arithmetic static learner to use CDHashMap. This is 2/3 PRs for deprecat...
author
Tim King
<taking@cs.nyu.edu>
Thu, 26 Jul 2018 20:13:43 +0000
(13:13 -0700)
committer
Andrew Reynolds
<andrew.j.reynolds@gmail.com>
Thu, 26 Jul 2018 20:13:43 +0000
(15:13 -0500)
src/theory/arith/arith_static_learner.h
patch
|
blob
|
history
diff --git
a/src/theory/arith/arith_static_learner.h
b/src/theory/arith/arith_static_learner.h
index 2318da25dadd877fd647634196e4ca0687559e54..a6b57411b4efdd30e3427d0d3aee05e0d0872e58 100644
(file)
--- a/
src/theory/arith/arith_static_learner.h
+++ b/
src/theory/arith/arith_static_learner.h
@@
-22,7
+22,7
@@
#include <set>
-#include "context/cd
trail_
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::CD
Trail
HashMap<Node, DeltaRational, NodeHashFunction> CDNodeToMinMaxMap;
+ typedef context::CDHashMap<Node, DeltaRational, NodeHashFunction> CDNodeToMinMaxMap;
CDNodeToMinMaxMap d_minMap;
CDNodeToMinMaxMap d_maxMap;