aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG_UNRELEASED.md
AgeCommit message (Collapse)Author
2021-03-14Adding sorting on tuples. (#720)jouvelot
* Adding sorting on tuples. Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>
2021-03-08Adding big block matricesCyril Cohen
- with special cases for row, column, and diagonal matrices - we define an order bijection between the indexing of the whole matrix and the indexing of the blocks to preserve triangularity
2021-03-07Adding Order.enum and related definitions and theoremsCyril Cohen
2021-01-25Merge pull request #696 from CohenCyril/sumnBYves Bertot
Adding lemma sumnB
2021-01-22Merge pull request #686 from pi8027/drop-coq-8.10Cyril Cohen
Drop support for Coq 8.10
2021-01-22Remove deprecation aliases introduced in 1.9.0Kazuhiko Sakaguchi
2021-01-19Update CHANGELOG_UNRELEASED.mdCyril Cohen
Co-authored-by: Anton Trunov <anton.a.trunov@gmail.com>
2021-01-19Adding lemma sumnBCyril Cohen
cf https://stackoverflow.com/questions/61556710
2021-01-19fixes #694Reynald Affeldt
2021-01-16Drop support for Coq 8.10 and deprecate the `deprecate` notationKazuhiko Sakaguchi
- 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`.
2021-01-14itv_bound comparison with -oo/+ooReynald Affeldt
2021-01-12Merge pull request #680 from pi8027/pairwiseCyril Cohen
Add `pairwise` predicate and some missing lemmas
2020-12-16Change the interpretation scope of some nullary notations from ring_scope to ↵Kazuhiko Sakaguchi
fun_scope
2020-12-16Add `pairwise r xs` predicateKazuhiko Sakaguchi
which asserts that the relation `r` holds for any i-th and j-th element of `xs` such that i < j.
2020-11-26Regrouping changelog entries for 1.12 releaseCyril Cohen
2020-11-25Using `only printing` and fixing coercion in notationsCyril Cohen
2020-11-25Rename `all1rel` to `all2rel`, restate `eq_allrel`, and add CHANGELOG entriesKazuhiko Sakaguchi
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>
2020-11-25Merge pull request #601 from pi8027/sorting_inCyril Cohen
Add `_in` variants of the sorting lemmas
2020-11-24Transpose `join_idP(l|r)` lemmas to follow the naming convention (#671)Kazuhiko Sakaguchi
Transpose `join_idP(l|r)` lemmas to follow the naming convention
2020-11-24Add more `_in` lemmas and CHANGELOG entriesKazuhiko Sakaguchi
2020-11-24Fix `@maxr` and `@minr`Kazuhiko Sakaguchi
2020-11-20Tuning simplifications using Arguments simpl nomatchCyril Cohen
2020-11-19Rename `subseq_order_path` to `subseq_path`Kazuhiko Sakaguchi
2020-11-19Refactor, reshuffle, and rename sorting lemmas in `path.v`Kazuhiko Sakaguchi
- Lemmas `sorted_(lt|le)_nth` have been renamed to `sorted_(ltn|leq)_nth`. - Lemmas `(ltn|leq)_index` have been renamed to `sorted_(ltn|leq)_index` and generalized for non-`eqType`s. - Lemmas `order_path_min`, `path_sortedE`, `subseq_order_path`, `subseq_sorted`, `sorted_uniq`, `sorted_eq`, `irr_sorted_eq`, `sorted_(ltn|leq)_nth`, and `sorted_(ltn|leq)_index` have been relocated since their proofs are independent from `merge` and `sort`. - The stability proofs for `iota` sequences (`push_stable`, `pop_stable`, and `sort_iota_stable`) have been simplified by sorting out their hypotheses and by redefining `push_invariant` to include the `sorted` condition. Their main result `sort_iota_stable`, formerly a local `Let` to prove `sort_stable`, has been turned into a lemma. - Some stability proofs for general sequences (`sort_stable` and `filter_sort`) have also been simplified, of which the former one uses the above `sorted_ltn_nth` lemma for a non-`eqType`.
2020-11-18Merge pull request #651 from CohenCyril/merge_sort_push_invariantCyril Cohen
Adding size_merge_sort_push
2020-11-18Merge pull request #599 from CohenCyril/dup_swap_applyEnrico Tassi
Intro pattern extensions for dup, swap and apply
2020-11-18Adding size_merge_sort_pushCyril Cohen
This documents the fact that `merge_sort_push` preserves an invariant on its second argument. Importing a statement and proof by Georges Gonthier, inspired by one of Karl Palmskog's contribution. Co-Authored-By: Karl Palmskog <palmskog@kth.se> Co-Authored-By: Georges Gonthier <georges.gonthier@inria.fr>
2020-11-16Maximal rank and full rank row submatricesCyril Cohen
2020-11-16Merge pull request #636 from CohenCyril/fix_comm_mxCLaurent Théry
`comm(Cmx|_mxC)` -> `comm(_scalar_mx|_mx_scalar)`
2020-11-13Merge pull request #646 from pi8027/rename-eq_sortedCyril Cohen
Rename `eq_sorted` lemmas to `sorted_eq` and generalize `sort_le_id`
2020-11-13Rename `eq_sorted` lemmas to `sorted_eq` and generalize `sort_le_id`Kazuhiko Sakaguchi
- Rename `eq_sorted` lemmas to `sorted_eq` to address a naming inconsistency. - Lemma `sort_le_id` has been generalized from `orderType` to `porderType`.
2020-11-13Fix CHANGELOG_UNRELEASED.mdKazuhiko Sakaguchi
- Unindent three entries for #611 and #624 (first part). - Remove duplicated entries for #604 (second part).
2020-11-12Apply suggestions from KazuhikoCyril Cohen
Co-authored-by: Kazuhiko Sakaguchi <pi8027@gmail.com>
2020-11-12Equivalences instead of implications for `count_maskP` and `count_subseqP`Cyril Cohen
2020-11-12Shorter proofs and suggestions by KazuhikoCyril Cohen
Co-authored-by: Kazuhiko Sakaguchi <pi8027@gmail.com>
2020-11-12Adding some theory for `rem` and generalizing `subset_maskP`Cyril Cohen
- Added helper lemmas about `rem`: `rem_cons` (to control unfolding), `remE`, `count_rem`, `count_mem_rem`, and `subseq_mem`. (New lemma `drop_index` briges the gap between `cat_take_drop` and `remE`). - `subset_maskP`, which was not released yet is generalized with hypothesis `(forall x, count_mem x s1 <= count_mem x s2)`, instead of `uniq s1` and `{subset s1 <= s2}`, the previous behaviour can be restored with helper lemma `leq_uniq_count` - Its trivial consequence `subset_subseqP` has been added too.
2020-11-11Intro pattern extensions for dup, swap and applyCyril Cohen
2020-11-11Apply suggestions from code reviewChristian Doczkal
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com> Co-authored-by: Kazuhiko Sakaguchi <pi8027@gmail.com>
2020-11-11fixup after feedback from CyrilChristian Doczkal
2020-11-11suggestions from CyrilChristian Doczkal
2020-11-11lemmas on subseq and rotChristian Doczkal
2020-11-11Merge pull request #632 from pi8027/path-cycle-sortedCyril Cohen
Reorganize, generalize, and add lemmas about `path`, `cycle`, and `sorted`
2020-11-11New lemmas about allpairsCyril Cohen
Co-authored-by: Kazuhiko Sakaguchi <pi8027@gmail.com>
2020-11-11Remove `cycle_(mask|filter)` lemmasKazuhiko Sakaguchi
2020-11-10Reorganize, generalize, and add lemmas about `path`, `cycle`, and `sorted`Kazuhiko Sakaguchi
- Add `allss` and `all_mask` lemmas. - Since `path`, `cycle`, and `sorted` share similar properties, these lemmas have been relocated in the same place to improve the visibility. Some missing lemmas have also been discovered and added. - Generalize `sub_path_in`, `sub_sorted_in`, and `eq_path_in` for non-`eqType` T by introducing a predicate `P : {pred T}`.
2020-11-09fix changelogCyril Cohen
2020-11-09`comm(Cmx|_mxC)` -> `comm(_scalar_mx|_mx_scalar)`Cyril Cohen
2020-11-07Merge pull request #626 from CohenCyril/inj_card_bijKazuhiko Sakaguchi
Generalizing inj_card_onto and inj_card_bij.
2020-11-04Remove the `mc_1_9` compat moduleKazuhiko Sakaguchi
2020-11-04Merge pull request #603 from chdoc/rot-rotKazuhiko Sakaguchi
lemmas for reasoning about "rot n (rot m s)"