Commit 2021-03-09 21:43 8e246cbb
View on Github →refactor(data/mv_polynomial): cleanup equivs (#6589) This:
- Replaces alg_equiv_congr_leftwithrename_equiv(to matchrename)
- Removes ring_equiv_congr_left(it's nowrename_equiv.to_ring_equiv)
- Renames alg_equiv_congr_righttomap_alg_equiv(to matchmap) and removes thecomapfrom the definition
- Renames ring_equiv_congr_righttomap_equiv(to matchmap)
- Removes alg_equiv_congr(it's now(map_alg_equiv R e).trans $ (rename_equiv e_var).restrict_scalars _, which while longer is never used anyway)
- Removes ring_equiv_congr(it's now(map_equiv R e).trans $ (rename_equiv e_var).to_ring_equiv, which while longer is never used anyway)
- Replaces punit_ring_equivwithpunit_alg_equiv
- Removes comapfrom the definition ofsum_alg_equiv
- Promotes option_equiv_left,option_equiv_right, andfin_succ_equivtoalg_equivs This is a follow-up to #6420