Commit 2022-12-21 04:17 3f9ce172
View on Github →feat: implement basic version of tauto tactic (#1081)
Adds a basic version of the tauto
tactic, mostly a line-by-line translation of the Lean 3 version.
- As per this zulip discussion, makes
tauto
always-classical and eliminatestauto!
. - Does not yet add any symmetry-based logic or the fancy union-find datastructure from https://github.com/leanprover-community/mathlib/pull/180.
- Adds a
andThenOnSubgoals
tactic combinator inMathlib.Tactic.Basic
.