summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/sygus_interpol.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/sygus/sygus_interpol.h')
-rw-r--r--src/theory/quantifiers/sygus/sygus_interpol.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/theory/quantifiers/sygus/sygus_interpol.h b/src/theory/quantifiers/sygus/sygus_interpol.h
index c96f23e00..07f5ed4ad 100644
--- a/src/theory/quantifiers/sygus/sygus_interpol.h
+++ b/src/theory/quantifiers/sygus/sygus_interpol.h
@@ -122,10 +122,9 @@ class SygusInterpol
* @param conj input argument
* @param result the return value
*/
- void getIncludeCons(
- const std::vector<Node>& axioms,
- const Node& conj,
- std::map<TypeNode, std::unordered_set<Node, NodeHashFunction>>& result);
+ void getIncludeCons(const std::vector<Node>& axioms,
+ const Node& conj,
+ std::map<TypeNode, std::unordered_set<Node>>& result);
/**
* Set up the grammar for the interpol-to-synthesis.
@@ -180,7 +179,7 @@ class SygusInterpol
/**
* unordered set for shared symbols between axioms and conjecture.
*/
- std::unordered_set<Node, NodeHashFunction> d_symSetShared;
+ std::unordered_set<Node> d_symSetShared;
/**
* free variables created from d_syms.
*/
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback