diff options
| author | Kazuhiko Sakaguchi | 2020-12-15 22:05:15 +0900 |
|---|---|---|
| committer | Kazuhiko Sakaguchi | 2021-01-16 00:28:21 +0900 |
| commit | 5f748f7ed9940c0db56e7dadd166f5e69bde6da9 (patch) | |
| tree | d7013ad66741ab20ec57e29ad013daf55f4dd902 /mathcomp/algebra/mxalgebra.v | |
| parent | 68fab9412b287079164aab5f3eda71fcd65df8cc (diff) | |
Drop support for Coq 8.10 and deprecate the `deprecate` notation
- The `deprecate` notation and `iota_add` have been deprecated. All the uses of
the `deprecate` notation have been replaced with the `deprecated` attribute.
- Deprecation aliases in `ssrnat` and `ssrnum` introduced in MathComp 1.11+beta1
have been removed.
- Remove `VDFILE` related hacks from `Makefile.common`.
Diffstat (limited to 'mathcomp/algebra/mxalgebra.v')
| -rw-r--r-- | mathcomp/algebra/mxalgebra.v | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/mathcomp/algebra/mxalgebra.v b/mathcomp/algebra/mxalgebra.v index d707905..c23cfb1 100644 --- a/mathcomp/algebra/mxalgebra.v +++ b/mathcomp/algebra/mxalgebra.v @@ -3068,9 +3068,7 @@ Proof. by rewrite /center_mx -map_cent_mx; apply: map_capmx. Qed. End MapMatrixSpaces. -Notation "@ 'mulsmx_addl'" := - (deprecate mulsmx_addl mulsmxDl) (at level 10, only parsing) : fun_scope. -Notation "@ 'mulsmx_addr'" := - (deprecate mulsmx_addr mulsmxDr) (at level 10, only parsing) : fun_scope. -Notation mulsmx_addl := (@mulsmx_addl _ _ _ _ _) (only parsing). -Notation mulsmx_addr := (@mulsmx_addr _ _ _ _ _) (only parsing). +#[deprecated(since="mathcomp 1.12.0", note="Use mulsmxDl instead.")] +Notation mulsmx_addl := mulsmxDl (only parsing). +#[deprecated(since="mathcomp 1.12.0", note="Use mulsmxDr instead.")] +Notation mulsmx_addr := mulsmxDr (only parsing). |
