aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-30Restore CI with `finmap master`Georges Gonthier
Following merge of math-comp/finmap#36
2019-04-30Merge pull request #338 from math-comp/coq-ssrbool-refactor-compatGeorges Gonthier
Fix compatibility for #237
2019-04-30Fix compatibility for #237Georges Gonthier
- reprove rather than specialize `Some_inj` to allow for redefinition of `nonPropType` in `mathcomp.ssreflect.ssreflect` - retarget finmap CI to coq-9995-compatibility
2019-04-29Merge pull request #337 from math-comp/coq-ssrbool-refactor-compatGeorges Gonthier
Generalise use of `{pred T}` from coq/coq#9995
2019-04-29reinstate token catenation hack in `prime.v`Georges Gonthier
Appears to be needed fo v8.7 compatibility, to avert some bug in early `only printing` implementation whose fix was not back ported.
2019-04-29Generalise use of `{pred T}` from coq/coq#9995Georges Gonthier
Use `{pred T}` systematically for generic _collective_ boolean predicate. Use `PredType` to construct `predType` instances. Instrument core `ssreflect` files to replicate these and other new features introduces by coq/coq#9555 (`nonPropType` interface, `simpl_rel` that simplifies with `inE`).
2019-04-28Merge pull request #336 from CohenCyril/clean_requireGeorges Gonthier
Cleaning Require and Require Imports
2019-04-26Cleaning Require and Require ImportsCyril Cohen
2019-04-25Merge pull request #335 from math-comp/fix-if-returnGeorges Gonthier
remove deprecated use of `if ... return`
2019-04-24remove deprecated use of `if ... return`Georges Gonthier
Replace improper use of non-dependent `return` clause in `if` with a type cast; an upcoming coq-side PR will discontinue support for this, in order to support dependent return clauses with an implicit `as` annotation.
2019-04-23Merge pull request #332 from pi8027/zmodp-intervalCyril Cohen
Remove unused `Require`s and a hint directive from interval.v
2019-04-18Remove unused `Require`s and a hint directive from interval.vKazuhiko Sakaguchi
2019-04-18Merge pull request #331 from pi8027/zmodp-ssrnumCyril Cohen
ssrnum doesn't use zmodp theory
2019-04-17ssrnum doesn't use zmodpKazuhiko Sakaguchi
2019-04-17Merge pull request #307 from erikmd/extend-ciCyril Cohen
[ci] Extend the test-suite
2019-04-17Merge pull request #306 from erikmd/refactor-ciCyril Cohen
Refactor CI with separate deploy jobs
2019-04-16[ci] Add tests with more librariesErik Martin-Dorel
- coq-mathcomp-odd-order.dev + coq.dev - coq-mathcomp-bigenough.dev, coq-{8.7, 8.8, 8.9, dev} - coq-mathcomp-finmap.dev, coq-{8.7, 8.8, 8.9, dev} The configs below are commented-out as the upstream repos' opam is not yet marked as compatible with mathcomp.dev (and Travis CI doesn't test it with mathcomp-dev images) # - coq-mathcomp-real-closed.dev, coq-{8.7, 8.8, 8.9, dev} # - coq-mathcomp-analysis.dev, coq-{8.8, 8.9, dev} Close math-comp/math-comp#245
2019-04-16Detail: Print a more legible description for the cloned external librariesErik Martin-Dorel
2019-04-16Don't run "opam clean -c" to workaround ocaml/opam#3828Erik Martin-Dorel
2019-04-16Swap the deploy and test stagesErik Martin-Dorel
so the images: - mathcomp/mathcomp-dev:coq-8.7 - mathcomp/mathcomp-dev:coq-8.8 - mathcomp/mathcomp-dev:coq-8.9 - mathcomp/mathcomp-dev:coq-dev will be pushed to Docker Hub even if a third-party library CI fails.
2019-04-16Print more debug informationErik Martin-Dorel
2019-04-16Refactor jobs: Split .opam-build & Create .docker-deployErik Martin-Dorel
* The latter template job is trusted and only runs: - in branch master, - if all build *and* test jobs were successful (major change in the deployment's condition) * The other jobs are not tagged with "environment: name: deployment", so they won't be able to read scoped protected variables. * href: https://gitlab.com/help/ci/variables/README.md#limiting-environment-scopes-of-variables-premium
2019-04-16Add commentary sections & Swap order of .make-build, .opam-buildErik Martin-Dorel
2019-04-08Merge pull request #325 from CohenCyril/opam-2.0Cyril Cohen
switching to opam 2.0 format
2019-04-08Update CHANGELOG.mdCyril Cohen
2019-04-08Update CHANGELOG.mdCyril Cohen
2019-04-08update mailmapEnrico Tassi
2019-04-08switching to opam 2.0 formatCyril Cohen
2019-04-08Update INSTALL.mdCyril Cohen
2019-04-08Update CHANGELOG.mdCyril Cohen
2019-04-08Merge pull request #318 from CohenCyril/hierarchy_testCyril Cohen
Least common childen
2019-04-08Merge pull request #324 from math-comp/seq-permutations-allpairsCyril Cohen
Seq refactoring; adding `permutations`, extending `allpairs`
2019-04-08New test cases generation: corrent implementation of least common childrenKazuhiko Sakaguchi
Add a new option `-raw-inheritances` to `hierarchy-diagram` to generate an intermediate file for `hierarchy_test.py`. So the typical usage is: $ python3.5 etc/utils/hierarchy_test.py \ <(etc/utils/hierarchy-diagram -raw-inheritances -R mathcomp mathcomp) \ > mathcomp/test_suite/hierarchy_test.v
2019-04-06Permutations and other extensions to seq; fintype documentationGeorges Gonthier
- Added `permutations` and some `perm_eq` lemmas suggested by @MrSet in #299 (except the link to the coq lib `Permutation` predicate). Use insertions to construct permutations. This definition is closer to the one proposed by @MrSet, than one using rotations (it adds one line to the definition of `permutations` but the proofs become a little simpler.) - Added support for casts on `map` comprehension general terms. - Added `allpairs_map[lr]` suggested by @pi8027 in #314, but with equational proofs; changed `allpairs_comp` to its converse `map_allpairs` for consistency. - Add three `allpairs` extensionality lemmas: for the non-localised, dependent localised and non-dependent localised cases; as per `eq_in_map`, the latter two are equivalences. - Documented the `all2` predicate added in #224, and the view combinators added in #202. - Renamed `seq2_ind` to `seq_ind2`, and weakened the induction hypothesis, adding a `size` equality assumption. - Corrected the header to use `<=>` for `bool` predicate documentation, and `<->` for `Prop` predicates, following the library’s general convention. - Replaced the `nosimpl` in `rev` with a `Arguments simpl never` directive, making it possible to merge the `Rev` section into the main `Sequences` section. - Miscellaneous improvements to proof scripts and file organisation. - Correct maximal implicits of `constant`. - Fixes omitted `Prenex Implicit` declaration. - Other implicits fixes. - Fix apparent `done` regression It appears `done` now does a weaker form of intros, and this broke the `dtuple_onP` proof. Updated the proof to eliminate the issue. (Commit log edited by @CohenCyril during the squash.)
2019-04-06Fix inheritance bugs in finalg and extremalKazuhiko Sakaguchi
2019-04-05least common childenCyril Cohen
2019-04-04no output on success in test_suite/hierarchy_test.v (#323)Cyril Cohen
2019-04-04porting ChangeLog to Markdown format (#322)Enrico
2019-04-04Merge pull request #321 from math-comp/remove-8.6Cyril Cohen
remove support for Coq 8.6
2019-04-04remove support for Coq 8.6Enrico Tassi
2019-04-04Merge pull request #320 from math-comp/fix-test-suiteEnrico
rename test-suite -> test_suite to make coq happy
2019-04-03rename test-suite -> test_suite to make coq happyEnrico Tassi
2019-04-03Merge pull request #291 from pi8027/finalg-hierarchyCyril Cohen
Fix inheritances from countalg to finalg
2019-04-03Fix inheritances in ssrnumKazuhiko Sakaguchi
2019-04-02Fix inheritances in countalg and finalg (the 2nd attempt)Kazuhiko Sakaguchi
2019-04-02speedup in hierarchy_test.pyCyril Cohen
2019-04-02identifying missing joinsCyril Cohen
2019-04-01Merge pull request #294 from math-comp/dependent-positive-finfunCyril Cohen
Dependent positive finfun
2019-04-01ChangeLog updateGeorges Gonthier
Describe extension and warn about incompatibilities.
2019-04-01locking definitions to address `integral.v` divergenceGeorges Gonthier
Line 426 in `integral.v` diverged to over 40 minutes with the new `finfun.v`, because matching `mod_Iirr` to `quo_Iirr` goes into exponential backtracking. This is currently averted by limiting the repetition of `mod_IirrE` in this `rewrite` line. Making `finfun` mixing opaque brings this down to 40 seconds, and locking `cfIirr` to a tractable 0.15 seconds, hopefully improving the instances. This line also takes 47 seconds to execute in the master branch, so this is likely an undetected Coq performance regression.