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/ssreflect/order.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/ssreflect/order.v')
| -rw-r--r-- | mathcomp/ssreflect/order.v | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/mathcomp/ssreflect/order.v b/mathcomp/ssreflect/order.v index 5032dfd..24fb6f2 100644 --- a/mathcomp/ssreflect/order.v +++ b/mathcomp/ssreflect/order.v @@ -3422,12 +3422,10 @@ Proof. exact: anti_mono_in. Qed. End POrderMonotonyTheory. -Notation "@ 'eq_sorted_lt'" := (deprecate eq_sorted_lt lt_sorted_eq) - (at level 10, only parsing) : fun_scope. -Notation "@ 'eq_sorted_le'" := (deprecate eq_sorted_le le_sorted_eq) - (at level 10, only parsing) : fun_scope. -Notation eq_sorted_lt := (@eq_sorted_lt _ _ _ _) (only parsing). -Notation eq_sorted_le := (@eq_sorted_le _ _ _ _) (only parsing). +#[deprecated(since="mathcomp 1.12.0", note="Use lt_sorted_eq instead.")] +Notation eq_sorted_lt := lt_sorted_eq (only parsing). +#[deprecated(since="mathcomp 1.12.0", note="Use le_sorted_eq instead.")] +Notation eq_sorted_le := le_sorted_eq (only parsing). End POrderTheory. |
