Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
t6s committed Nov 15, 2024
1 parent 687806c commit 56dbde7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Added

- in file `mathcomp_extra.v`,
+ lemmas `eq_lt_total`, `le_lt_total`

- file `Rstruct_topology.v`

- package `coq-mathcomp-reals` depending on `coq-mathcomp-classical`
Expand Down Expand Up @@ -182,6 +185,14 @@
* definition `mfun`
* lemmas `mfun_rect`, `mfun_valP`, `mfuneqP`

- in `sequences.v`,
+ generalized indexing from zero-based ones (`0 <= k < n` and `k <oo`)
to `m <= k < n` and `m <= k <oo`
* lemmas `nondecreasing_series`, `ereal_nondecreasing_series`,
`eseries_mkcondl`, `eseries_mkcondr`, `eq_eseriesl`,
`nneseries_lim_ge`, `adde_def_nneseries`,
`nneseriesD`, `nneseries_sum_nat`, `nneseries_sum`

### Deprecated

- in `topology_structure.v`:
Expand Down
1 change: 0 additions & 1 deletion classical/mathcomp_extra.v
Original file line number Diff line number Diff line change
Expand Up @@ -547,4 +547,3 @@ Proof. by case/boolP: (x == y)=> // ?; apply/orP; right; exact:lt_total. Qed.
Lemma le_lt_total {disp : unit} {T : orderType disp} (x y : T) :
(x <= y)%O || (y < x)%O.
Proof. by rewrite le_eqVlt -orbA eq_lt_total. Qed.

0 comments on commit 56dbde7

Please sign in to comment.