Skip to content

Commit 78abfad

Browse files
committed
fix: add public section and remove unused simp args
Add `public section` for Lean 4.30.0 module visibility and remove deprecated/unused simp lemmas (`AlgEquiv.toAlgHom_eq_coe`, `AlgHom.coe_coe`, `Algebra.TensorProduct.assoc_tmul`) flagged by linters.
1 parent c66ed86 commit 78abfad

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Mathlib/RingTheory/HopfAlgebra/Polynomial.lean

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ auxiliary lemmas, then apply `algHom_ext`.
4444
* Langer, R., *Determinantal bases and the symmetric group*, arXiv:0907.3950, §1.2
4545
-/
4646

47+
public section
48+
4749
noncomputable section
4850

4951
open Polynomial TensorProduct
@@ -171,10 +173,9 @@ instance instCoalgebra : Coalgebra R R[X] :=
171173
(comulAdditiveAlgHom R)).toLinearMap
172174
congr 1
173175
apply Polynomial.algHom_ext
174-
simp only [comulAdditiveAlgHom, AlgHom.comp_apply, AlgEquiv.toAlgHom_eq_coe,
175-
AlgHom.coe_coe, Algebra.TensorProduct.map_tmul, AlgHom.id_apply, aeval_X,
176+
simp only [comulAdditiveAlgHom, AlgHom.comp_apply,
177+
Algebra.TensorProduct.map_tmul, AlgHom.id_apply, aeval_X,
176178
map_add, map_one, Algebra.TensorProduct.one_def,
177-
Algebra.TensorProduct.assoc_tmul,
178179
TensorProduct.add_tmul, TensorProduct.tmul_add]
179180
abel }
180181

0 commit comments

Comments
 (0)