summaryrefslogtreecommitdiff
path: root/src/prop/skolem_def_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/skolem_def_manager.h')
-rw-r--r--src/prop/skolem_def_manager.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/prop/skolem_def_manager.h b/src/prop/skolem_def_manager.h
index 475f40c85..d3b59f895 100644
--- a/src/prop/skolem_def_manager.h
+++ b/src/prop/skolem_def_manager.h
@@ -41,8 +41,8 @@ namespace prop {
*/
class SkolemDefManager
{
- using NodeNodeMap = context::CDInsertHashMap<Node, Node, NodeHashFunction>;
- using NodeSet = context::CDHashSet<Node, NodeHashFunction>;
+ using NodeNodeMap = context::CDInsertHashMap<Node, Node>;
+ using NodeSet = context::CDHashSet<Node>;
public:
SkolemDefManager(context::Context* context,
@@ -81,8 +81,7 @@ class SkolemDefManager
* @param n The node to traverse
* @param skolems The set where the skolems are added
*/
- void getSkolems(TNode n,
- std::unordered_set<Node, NodeHashFunction>& skolems) const;
+ void getSkolems(TNode n, std::unordered_set<Node>& skolems) const;
/** Does n have skolems having definitions managed by this class? */
bool hasSkolems(TNode n) const;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback