summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/sygus/cegis.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers/sygus/cegis.h')
-rw-r--r--src/theory/quantifiers/sygus/cegis.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/quantifiers/sygus/cegis.h b/src/theory/quantifiers/sygus/cegis.h
index db2c44ca9..b9f593b69 100644
--- a/src/theory/quantifiers/sygus/cegis.h
+++ b/src/theory/quantifiers/sygus/cegis.h
@@ -107,14 +107,14 @@ class Cegis : public SygusModule
/** refinement lemmas */
std::vector<Node> d_refinement_lemmas;
/** (processed) conjunctions of refinement lemmas that are not unit */
- std::unordered_set<Node, NodeHashFunction> d_refinement_lemma_conj;
+ std::unordered_set<Node> d_refinement_lemma_conj;
/** (processed) conjunctions of refinement lemmas that are unit */
- std::unordered_set<Node, NodeHashFunction> d_refinement_lemma_unit;
+ std::unordered_set<Node> d_refinement_lemma_unit;
/** substitution entailed by d_refinement_lemma_unit */
std::vector<Node> d_rl_eval_hds;
std::vector<Node> d_rl_vals;
/** all variables appearing in refinement lemmas */
- std::unordered_set<Node, NodeHashFunction> d_refinement_lemma_vars;
+ std::unordered_set<Node> d_refinement_lemma_vars;
/** adds lem as a refinement lemma */
void addRefinementLemma(Node lem);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback