Commit 2022-12-01 10:59 fe45d2dc
View on Github →feat: port Algebra.Order.Monoid.Canonical.Defs (#778)
mathlib SHA: 1fc36cc9c8264e6e81253f88be7fb2cb6c92d76a
Porting Notes:
1. Haven't touched
protect_proj
. If someone knows what to do to fix this, please feel free.2. LinearOrder.toLattice
is found in Order.Lattice
which is both not ported yet and not imported.
simp_rw
seems to be more aggressive in lean4, so a proof was rewritten to just userw
alone.simpa
seemed to continue to try and solve a goal after it had already been solved.one_lt_mul_iff
needed an additionalrfl
to solve. This wasn't needed in lean3.- Some
simp
lemmas are not simp-normal form. I have not debugged any of these yet. - Further documentation is needed. If anyone wants to add them, please feel free.