| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-06 | Merge pull request #472 from affeldt-aist/doc_fix | Yves Bertot | |
| minor documentation fix | |||
| 2020-04-06 | minor documentation fix | Reynald Affeldt | |
| 2020-04-02 | Merge pull request #468 from ybertot/remove-deprecated-from-1.9 | Enrico Tassi | |
| remove deprecated commands whose deprecation was introduced in 1.9.0 | |||
| 2020-04-01 | Merge pull request #429 from pi8027/extend-nat-comparison | Yves Bertot | |
| Extend comparison predicates for nat with minn and maxn and reorder arguments of those in order.v | |||
| 2020-03-31 | remove deprecated commands whose deprecation was introduced in release 1.9.0 | Yves Bertot | |
| fixes #418 | |||
| 2020-03-31 | Merge pull request #457 from CohenCyril/find | Yves Bertot | |
| Find | |||
| 2020-03-19 | Merge pull request #463 from pi8027/hierarchy-transitive-closure | Enrico Tassi | |
| Fix hierarchy.ml to compute the transitive closure of a hierarchy | |||
| 2020-03-18 | Merge pull request #459 from CohenCyril/sub_sorted | Cyril Cohen | |
| Link between subrelations and path/sorted | |||
| 2020-03-16 | Update mathcomp/ssreflect/path.v | Cyril Cohen | |
| Co-Authored-By: Kazuhiko Sakaguchi <pi8027@gmail.com> | |||
| 2020-03-16 | Link between subrelations and path/sorted | Cyril Cohen | |
| 2020-03-16 | Document change on comparison predicates in order.v | Kazuhiko Sakaguchi | |
| 2020-03-16 | Merge pull request #460 from affeldt-aist/spurious_lerr | Cyril Cohen | |
| just noticed a tentative use of a not yet existing lemma | |||
| 2020-03-15 | just noticed a tentative use of a not yet existing lemma | Reynald Affeldt | |
| 2020-03-15 | Reorder arguments of comparison predicates in order.v as they should | Kazuhiko Sakaguchi | |
| 2020-03-15 | Extend comparison predicates for nat with minn and maxn | Kazuhiko Sakaguchi | |
| 2020-03-15 | Fix hierarchy.ml to compute the transitive closure of a hierarchy | Kazuhiko Sakaguchi | |
| 2020-03-12 | Merge pull request #465 from erikmd/coq-8.11 | Cyril Cohen | |
| [ci] test-build and deploy mathcomp/mathcomp-dev:coq-8.11 | |||
| 2020-03-12 | Merge pull request #455 from erikmd/bump-opam | Cyril Cohen | |
| [ci] Simplify {Dockerfile,Dockerfile.make} & Restore the "opam clean -c" option | |||
| 2020-03-08 | [ci] Build mathcomp/mathcomp-dev:8.11 | Erik Martin-Dorel | |
| and test coq-lemma-overloading accordingly. | |||
| 2020-03-08 | Fix CI (coq-lemma-overloading dropped compatibility with Coq < 8.10) | Erik Martin-Dorel | |
| 2020-03-08 | refactor: Simplify the Dockerfiles | Erik Martin-Dorel | |
| * the CLI option --build-arg=compiler="${OPAM_SWITCH}" is now useless (it had been introduced to be able to compile Coq versions < 8.7, while mathcomp-dev now requires Coq 8.7+) * the "coqorg/base:bare" image now contains the two environment vars COMPILER and COMPILER_EDGE => clear COMPILER="" in mathcomp-dev's Dockerfile multi-stage build. | |||
| 2020-01-30 | Merge pull request #453 from pi8027/experiment/order-nondistr-lattice | Pierre-Yves Strub | |
| Non-distributive lattice structures | |||
| 2020-01-29 | Documentation work for (non-distributive) latticeType | Kazuhiko Sakaguchi | |
| 2020-01-28 | Added lemmas about foldl, scanl, foldr and rcons and cons | Cyril Cohen | |
| 2020-01-28 | Theorems about find and index | Cyril Cohen | |
| 2020-01-21 | Merge pull request #452 from SimonBoulier/non_maximal_implicit | Enrico Tassi | |
| Adapt to coq/coq#11368 (Turn trailing implicit warning into an error) | |||
| 2020-01-17 | Revert "Don't run "opam clean -c" to workaround ocaml/opam#3828" | Erik Martin-Dorel | |
| This reverts commit a03e0cb0ff40afabcaccba7f764076355ca82962. | |||
| 2020-01-15 | Non-distributive lattice | Kazuhiko Sakaguchi | |
| 2020-01-14 | Merge pull request #454 from CohenCyril/dual | Cyril Cohen | |
| Renaming converse to dual in order.v | |||
| 2020-01-10 | Missing canonical structures for dual | Cyril Cohen | |
| 2020-01-10 | Exporting T^d notation | Cyril Cohen | |
| 2020-01-09 | Renaming converse to dual in order.v | Cyril Cohen | |
| Indeed, the name converse and notation ^c were already taken in https://github.com/math-comp/math-comp/blob/master/mathcomp/algebra/ssralg.v#L989-L990 We are renaming to dual. | |||
| 2020-01-09 | Merge pull request #435 from anton-trunov/add-fcsl-pcm-to-ci | Enrico Tassi | |
| Add FCSL-PCM library to CI | |||
| 2020-01-08 | Adapt to coq/coq#11368 (Turn trailing implicit warning into an error) | SimonBoulier | |
| 2020-01-07 | Add FCSL-PCM library to CI | Anton Trunov | |
| FCSL-PCM is in Coq's CI, so this will prevent breaking Coq's CI, see https://github.com/imdea-software/fcsl-pcm/issues/17 | |||
| 2020-01-03 | Merge pull request #443 from pi8027/eqVneq | Cyril Cohen | |
| Refactoring and linting proofs especially in polydiv.v | |||
| 2019-12-28 | Refactoring and linting especially polydiv | Kazuhiko Sakaguchi | |
| - Replace `altP eqP` and `altP (_ =P _)` with `eqVneq`: The improved `eqVneq` lemma (#351) is redesigned as a comparison predicate and introduces a hypothesis in the form of `x != y` in the second case. Thus, `case: (altP eqP)`, `case: (altP (x =P _))` and `case: (altP (x =P y))` idioms can be replaced with `case: eqVneq`, `case: (eqVneq x)` and `case: (eqVneq x y)` respectively. This replacement slightly simplifies and reduces proof scripts. - use `have [] :=` rather than `case` if it is better. - `by apply:` -> `exact:`. - `apply/lem1; apply/lem2` or `apply: lem1; apply: lem2` -> `apply/lem1/lem2`. - `move/lem1; move/lem2` -> `move/lem1/lem2`. - Remove `GRing.` prefix if applicable. - `negbTE` -> `negPf`, `eq_refl` -> `eqxx` and `sym_equal` -> `esym`. | |||
| 2019-12-26 | Merge pull request #450 from pi8027/remove-ci-overlay-270 | Cyril Cohen | |
| Remove CI overlay for PR #270 | |||
| 2019-12-18 | Remove CI overlay for PR #270 | Kazuhiko Sakaguchi | |
| 2019-12-17 | Merge pull request #451 from erikmd/fix-scheduled-ci | Cyril Cohen | |
| [ci] add missing "except:" rules to fix the nightly build on GitLab CI | |||
| 2019-12-15 | fix: Add missing "except: schedules" | Erik Martin-Dorel | |
| It seems adding an "except:" rule in a job that "extends:" another one *overwrites* the except rule, so we were getting too many jobs in the mathcomp-dev scheduled pipeline. Once merged, this patch should fix this. | |||
| 2019-12-11 | Merge pull request #445 from ybertot/opam-packages | Enrico Tassi | |
| take advantage of opam variables and their default values | |||
| 2019-12-11 | Merge pull request #270 from math-comp/experiment/order | Assia Mahboubi | |
| Dispatching order and norm, and anticipating normed modules. | |||
| 2019-12-11 | The compatibility module in ssrnum should now be for version 1.10 | Kazuhiko Sakaguchi | |
| 2019-12-11 | Rephrasing the doc | Cyril Cohen | |
| 2019-12-11 | remove ProdNormedZmodule (#419) | affeldt-aist | |
| * remove ProdNormedZmodule from ssrnum.v, it made its way to mathcomp-analysis in a generalized form (branch analysis_270) at the time of this writing * update gitlab-ci | |||
| 2019-12-11 | renaming NormedZmoduleType and NormedZmoduleMixin (#416) | affeldt-aist | |
| * renaming NormedZmoduleType -> NormedZmodType NormedZmoduleMixin -> NormedZmodMixin that looks more homogeneous with regard to naming conventions used so far * update .gitlab-ci.yml * typo | |||
| 2019-12-11 | Fix notation modifiers and scopes | Kazuhiko Sakaguchi | |
| 2019-12-11 | Doc, comments, changelog and better proofs | Cyril Cohen | |
| - adding a doc paragraph on displays - Changelog - better proofs for new logn, gcdn, lcmn, partn facts - Putting comments in the example of nat | |||
| 2019-12-11 | Comparability in a numDomainType | Cyril Cohen | |
| amounts to the difference being real, and consequences | |||
