summaryrefslogtreecommitdiff
path: root/src/util/ite_removal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/ite_removal.h')
-rw-r--r--src/util/ite_removal.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/util/ite_removal.h b/src/util/ite_removal.h
index 7327d4a64..452b2d8a9 100644
--- a/src/util/ite_removal.h
+++ b/src/util/ite_removal.h
@@ -23,15 +23,23 @@
#include <vector>
#include "expr/node.h"
#include "util/dump.h"
+#include "context/context.h"
+#include "context/cdhashmap.h"
namespace CVC4 {
typedef std::hash_map<Node, unsigned, NodeHashFunction> IteSkolemMap;
class RemoveITE {
+ typedef context::CDHashMap<Node, Node, NodeHashFunction> ITECache;
+ ITECache d_iteCache;
public:
+ RemoveITE(context::UserContext* u) :
+ d_iteCache(u) {
+ }
+
/**
* Removes the ITE nodes by introducing skolem variables. All
* additional assertions are pushed into assertions. iteSkolemMap
@@ -39,7 +47,7 @@ public:
* assertions containing the new Boolean ite created in conjunction
* with that skolem variable.
*/
- static void run(std::vector<Node>& assertions, IteSkolemMap& iteSkolemMap);
+ void run(std::vector<Node>& assertions, IteSkolemMap& iteSkolemMap);
/**
* Removes the ITE from the node by introducing skolem
@@ -48,8 +56,8 @@ public:
* variables to the index in assertions containing the new Boolean
* ite created in conjunction with that skolem variable.
*/
- static Node run(TNode node, std::vector<Node>& additionalAssertions,
- IteSkolemMap& iteSkolemMap);
+ Node run(TNode node, std::vector<Node>& additionalAssertions,
+ IteSkolemMap& iteSkolemMap);
};/* class RemoveTTE */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback