| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-16 | Merge PR #13644: Fix overlay system: projects need to be loaded before overlays. | coqbot-app[bot] | |
| Reviewed-by: gares | |||
| 2020-12-16 | Merge PR #13568: Fix #13566: Add checks for invalid occurrences in several ↵ | Pierre-Marie Pédrot | |
| tactics. Reviewed-by: ppedrot | |||
| 2020-12-16 | Merge PR #13616: Bench: add .log extension to .stdout/stderr files | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-12-16 | Fix overlay system: projects need to be loaded before overlays. | Gaëtan Gilbert | |
| Also fixes is_in_projects | |||
| 2020-12-15 | Modify Logic/JMeq.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Program/Wf.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Logic/FunctionalExtensionality.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Classes/DecidableClass.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Classes/CEquivalence.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Bool/Zerob.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Bool/IfProp.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Bool/DecBool.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Bool/BoolEq.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify Numbers/Cyclic/Int63/Int63.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify ZArith/Zgcd_alt.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify ZArith/Zpow_facts.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify ZArith/Zpower.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify micromega/ZMicromega.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify QArith/Qreduction.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify setoid_ring/Field_theory.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Modify QArith/QArith_base.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-12-15 | Catch up to where I was last time. | Jasper Hugunin | |
| Many of the changes are a consequence of coq/coq#13132. | |||
| 2020-12-15 | Merge PR #13615: Document the manual tasks that I need to do at each release. | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-12-15 | Merge PR #13625: Tweak constr_matching so as to make it tail-rec on ↵ | coqbot-app[bot] | |
| projection expansion. Reviewed-by: ejgallego | |||
| 2020-12-15 | Merge PR #13633: [ci] uniform name of projects w.r.t. opam packages | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-12-15 | Merge PR #13609: Extrude the computation of redexp flags in reduce. | coqbot-app[bot] | |
| Reviewed-by: herbelin | |||
| 2020-12-15 | Merge PR #13621: Fast path in tclPROGRESS. | coqbot-app[bot] | |
| Reviewed-by: herbelin | |||
| 2020-12-15 | Merge PR #13632: [ci] Update pin ci script | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-12-15 | [ci] uniform name of projects w.r.t. opam packages | Enrico Tassi | |
| This makes it easier to track projects across Coq's CI and the platform | |||
| 2020-12-14 | Adding change log for #13568. | Hugo Herbelin | |
| 2020-12-14 | Add checks for invalid occurrences in setoid rewrite. | Hugo Herbelin | |
| We additionally check that occurrence 0 is invalid in simpl at, unfold at, etc. | |||
| 2020-12-14 | Merge PR #13630: Cleanup reductionops | coqbot-app[bot] | |
| Reviewed-by: gares | |||
| 2020-12-14 | Merge PR #13523: [envars] honor file "coq_environment.txt" | Pierre-Marie Pédrot | |
| Reviewed-by: MSoegtropIMC Reviewed-by: Zimmi48 Ack-by: ejgallego Ack-by: herbelin Ack-by: ppedrot | |||
| 2020-12-14 | Merge PR #13626: [ci] update doc for overlays | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-12-14 | Update dev/tools/pin-ci.sh | Enrico Tassi | |
| Co-authored-by: Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net> | |||
| 2020-12-14 | [ci] simplify script to pin ci projects | Enrico Tassi | |
| 2020-12-14 | [ci] fix code to check if the overlay is valid | Enrico Tassi | |
| 2020-12-14 | Do not rely on Reductionops to recognize canonical projections. | Pierre-Marie Pédrot | |
| No need to call the whole whd_gen machinery when a simple matching over a term would suffice. Note that this changes a bit the semantics, but I suspect that the previous code was buggy. Indeed, whd_nored also pushes cases and fixpoints on the stack, so that an applied canonical projection inside such a context would also match. But the caller in unification performs an approximate check where the term needs to be an application or a projection, which would prevent such complex situations most of the time, e.g. it would work with a dummy commutative cut but not their corresponding vanilla match. | |||
| 2020-12-14 | Remove most of Reductionops.*_state functions. | Pierre-Marie Pédrot | |
| There functions export the internal stack representation. The only real user is unification, which is suffering from major performance issues due to the naive representation of substitutions in processes. | |||
| 2020-12-14 | Reuse the cache everywhere possible in Clenv. | Pierre-Marie Pédrot | |
| 2020-12-14 | Store the metasubst cache in clenvs. | Pierre-Marie Pédrot | |
| 2020-12-14 | Make the clenv type private and provide a creation function. | Pierre-Marie Pédrot | |
| 2020-12-14 | Cache meta access in meta_instance. | Pierre-Marie Pédrot | |
| 2020-12-14 | Merge PR #13613: [changes] mark #12765 as experimental | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-12-14 | Merge PR #13509: Remove compatibility flag Set Bracketing Last Introduction ↵ | Pierre-Marie Pédrot | |
| Pattern Reviewed-by: Zimmi48 Reviewed-by: ppedrot | |||
| 2020-12-13 | Update dev/ci/user-overlays/README.md | Enrico Tassi | |
| Co-authored-by: Théo Zimmermann <theo.zimmi@gmail.com> | |||
| 2020-12-13 | Merge PR #13619: doc: Clarify the status of simpl vs cbn | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-12-13 | Add changelog for #13509. | Hugo Herbelin | |
| Co-Authored-By: Théo Zimmermann <theo.zimmi@gmail.com> | |||
| 2020-12-13 | Removing unused internal introduction-patterns flag assert_style. | Hugo Herbelin | |
| 2020-12-13 | Removing flag "Bracketing Last Introduction Pattern". | Hugo Herbelin | |
