Commit 2021-03-09 21:43 8e246cbb
View on Github →refactor(data/mv_polynomial): cleanup equivs (#6589) This:
- Replaces
alg_equiv_congr_left
withrename_equiv
(to matchrename
) - Removes
ring_equiv_congr_left
(it's nowrename_equiv.to_ring_equiv
) - Renames
alg_equiv_congr_right
tomap_alg_equiv
(to matchmap
) and removes thecomap
from the definition - Renames
ring_equiv_congr_right
tomap_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_equiv
withpunit_alg_equiv
- Removes
comap
from the definition ofsum_alg_equiv
- Promotes
option_equiv_left
,option_equiv_right
, andfin_succ_equiv
toalg_equiv
s This is a follow-up to #6420