pub trait SimplificationRule<Split: SplitStrategy>: CheckerRule {
// Required methods
fn applicable(&self, term: &Term) -> bool;
fn apply<'t>(
&self,
checker: CheckRef<'t, '_, Split>,
term: &'t Term,
) -> Result<Term, Option<TermPath>>;
}