aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-13Merge pull request #624 from CohenCyril/maskKazuhiko Sakaguchi
Adding some theory for `rem` and generalizing and renaming `subset_maskP`
2020-11-12Merge pull request #641 from pi8027/hint-extern-exactCyril Cohen
Replace `exact:` with `apply:` in `Hint Extern` declarations
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-12It is prohibited to use `exact:` in a `Hint Extern`Kazuhiko Sakaguchi
since `exact` might call `ssrdone` which calls use of level 0 hints, potentially causing a loop in some weird cases.
2020-11-11Merge pull request #640 from CohenCyril/fix_iota_addCyril Cohen
Deprecation of iota_add delayed, and not the one of iter_add
2020-11-11Merge pull request #604 from chdoc/subseqCyril Cohen
lemmas on `subseq` and `rot`
2020-11-11make pivot the first argument in uniq_subseq_pivotChristian Doczkal
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>
2020-11-11turn uniq_subseq_pivot into equalityChristian Doczkal
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-11Apply suggestions from code reviewChristian Doczkal
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>
2020-11-11suggestions from CyrilChristian Doczkal
2020-11-11lemmas on subseq and rotChristian Doczkal
2020-11-11Deprecation of iota_add delayed, and not the one of iter_addCyril Cohen
2020-11-11Merge pull request #632 from pi8027/path-cycle-sortedCyril Cohen
Reorganize, generalize, and add lemmas about `path`, `cycle`, and `sorted`
2020-11-11Merge pull request #630 from CohenCyril/allpairs_missingYves Bertot
New lemmas about allpairs
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-11Apply suggestions from code reviewKazuhiko Sakaguchi
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>
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-09Merge pull request #614 from erikmd/ci-coqbot-compatCyril Cohen
[CI] Update only/except rules (Add a variable to rebuild mathcomp only for coq-dev)
2020-11-09Merge pull request #637 from CohenCyril/fix_changelogCyril Cohen
Fix changelog
2020-11-09fix changelogCyril Cohen
2020-11-07fix: Deploy each image w.r.t. a separate GitLab CI environment nameErik Martin-Dorel
to fully benefit from the "forward_deployment_failure" feature cf. https://docs.gitlab.com/ee/ci/environments/deployment_safety.html#skip-outdated-deployment-jobs Remark on environment names: > Caution: Some characters are not allowed in environment names. Use > only letters, numbers, spaces, and '-', '_', '/', '{', '}', or '.'. > Also, it must not start nor end with '/'. cf. https://docs.gitlab.com/ee/ci/environments/index.html
2020-11-06Merge pull request #633 from CohenCyril/fix628Enrico Tassi
Delaying the deprecation of `iter_add`
2020-11-07Merge pull request #626 from CohenCyril/inj_card_bijKazuhiko Sakaguchi
Generalizing inj_card_onto and inj_card_bij.
2020-11-06Update mathcomp/ssreflect/ssrnat.vCyril Cohen
2020-11-05test switching Coq deprecation mechanizmCyril Cohen
2020-11-04Merge pull request #629 from pi8027/remove-compat-1.9Cyril Cohen
Remove the mc_1_9 compat module
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)"
2020-11-03Generalizing inj_card_onto and inj_card_bij.Cyril Cohen
2020-11-02Merge pull request #483 from CohenCyril/permSleq1Laurent Théry
Adding lemma PermSleq1 to perm.v
2020-11-02Adding `permS01`Cyril Cohen
2020-11-02lemmas for reasoing about "rot n (rot m s)"Christian Doczkal
2020-11-02Merge pull request #521 from CohenCyril/in_onKazuhiko Sakaguchi
In and on
2020-11-01minimizing variablesCyril Cohen
Co-authored-by: Kazuhiko Sakaguchi <pi8027@gmail.com>
2020-11-01generic interactions between in and onCyril Cohen
+ Taking into account Kazuhiko's remarks Co-authored-by: Kazuhiko Sakaguchi <sakaguchi@coins.tsukuba.ac.jp>
2020-10-30Merge pull request #627 from pi8027/mulpzCyril Cohen
Generalize mulpz for any ringType
2020-10-31Generalize mulpz for any ringTypeKazuhiko Sakaguchi
2020-10-31Merge pull request #625 from CohenCyril/hotfix_ssrnatKazuhiko Sakaguchi
Fix ssrnat
2020-10-30fix ssrnatCyril Cohen
2020-10-30Merge pull request #610 from pi8027/iter-lemmasCyril Cohen
Add new lemmas iterM and iterX in ssrnat
2020-10-30Merge pull request #607 from pi8027/distr-suffixesCyril Cohen
Switch from long suffixes to short suffixes
2020-10-30Use `exp` rather than `X` for exponents of polynomialsKazuhiko Sakaguchi
2020-10-29Add CHANGELOG entriesKazuhiko Sakaguchi
2020-10-29Add `dvdpNl` and rename `dvdpN` to `dvdpNr`Kazuhiko Sakaguchi
Co-authored-by: Cyril Cohen <CohenCyril@users.noreply.github.com>