chore(library/blast/simplifier/simplifier_actions): fix warnings
This commit is contained in:
parent
21cb409e6c
commit
d5b0a45aa4
1 changed files with 2 additions and 2 deletions
|
@ -21,8 +21,8 @@ struct simplifier_branch_extension : public branch_extension {
|
|||
virtual ~simplifier_branch_extension() {}
|
||||
virtual branch_extension * clone() override { return new simplifier_branch_extension(*this); }
|
||||
virtual void initialized() override { m_srss = ::lean::get_simp_rule_sets(env()); }
|
||||
virtual void hypothesis_activated(hypothesis const & h, hypothesis_idx hidx) override { }
|
||||
virtual void hypothesis_deleted(hypothesis const & h, hypothesis_idx) override { }
|
||||
virtual void hypothesis_activated(hypothesis const &, hypothesis_idx) override { }
|
||||
virtual void hypothesis_deleted(hypothesis const &, hypothesis_idx) override { }
|
||||
simp_rule_sets const & get_simp_rule_sets() const { return m_srss; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue