From 12f062a502e25978700cca0d1abb09a8ba81e543 Mon Sep 17 00:00:00 2001 From: Tim King Date: Wed, 25 Jul 2018 16:56:34 -0700 Subject: [PATCH] Changing ArithIteUtils to use CDInsertHashMap. (#2206) This is 1/3 PRs for deprecating CDTrailHashMap. --- src/theory/arith/arith_ite_utils.h | 4 ++-- 1 file 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 d_subcount; - typedef context::CDTrailHashMap CDNodeMap; + typedef context::CDInsertHashMap CDNodeMap; CDNodeMap d_skolems; typedef std::map > ImpMap; -- 2.30.2