summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/synth_rew_rules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/synth_rew_rules.cpp')
-rw-r--r--src/preprocessing/passes/synth_rew_rules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preprocessing/passes/synth_rew_rules.cpp b/src/preprocessing/passes/synth_rew_rules.cpp
index e521ceffa..81d5cae84 100644
--- a/src/preprocessing/passes/synth_rew_rules.cpp
+++ b/src/preprocessing/passes/synth_rew_rules.cpp
@@ -54,8 +54,8 @@ PreprocessingPassResult SynthRewRulesPass::applyInternal(
NodeManager* nm = NodeManager::currentNM();
// initialize the candidate rewrite
- std::unordered_map<TNode, bool, TNodeHashFunction> visited;
- std::unordered_map<TNode, bool, TNodeHashFunction>::iterator it;
+ std::unordered_map<TNode, bool> visited;
+ std::unordered_map<TNode, bool>::iterator it;
std::vector<TNode> visit;
// Get all usable terms from the input. A term is usable if it does not
// contain a quantified subterm
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback