| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-08-25 | Modify Numbers/NatInt/NZSqrt.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZPow.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZParity.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZMulOrder.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZOrder.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZMul.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZAdd.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Numbers/NatInt/NZBase.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Structures/GenericMinMax.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Structures/OrdersFacts.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Structures/OrdersTac.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Structures/Orders.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Relations/Relations.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Relations/Operators_Properties.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Setoids/Setoid.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Classes/CMorphisms.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Classes/CRelationClasses.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Classes/Morphisms.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Classes/RelationClasses.v to compile with -mangle-names | Jasper Hugunin | |
| The apply <- tactic was breaking, so we had to modify the definition in Init/Tactics.v to use slightly fresher names. | |||
| 2020-08-25 | Modify Bool/Bool.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Init/Tactics.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Init/Wf.v to compile with -mangle-names | Jasper Hugunin | |
| 2020-08-25 | Modify Init/Peano.v to compile with -mangle-names. | Jasper Hugunin | |
| Here I added intros rather than moving premises before the colon, partly to be more consistent with nearby lemma statements. | |||
| 2020-08-25 | Merge PR #12879: added numeral_notation to META.coq.in | coqbot-app[bot] | |
| Reviewed-by: ejgallego Ack-by: Alizter Ack-by: gares | |||
| 2020-08-25 | Merge PR #12897: [test-suite] close the proof added in #12857 | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-08-25 | Merge PR #12758: Fixing a coercion entry transitivity bug. | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-08-25 | Merge PR #12801: Put cyclic numbers in sort Set instead of Type | Anton Trunov | |
| Ack-by: Zimmi48 Reviewed-by: anton-trunov | |||
| 2020-08-25 | [test-suite] close the proof | Enrico Tassi | |
| 2020-08-25 | added coq.vernac dependency to string_notations plugin | Ali Caglayan | |
| 2020-08-25 | Merge PR #12888: Add /dev/bench to CODEOWNERS | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-08-25 | Merge PR #12728: Fix slow Print Universes Subgraph when many ambient universes. | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-08-25 | added coq.vernac dependency to numeral_notations plugin | Ali Caglayan | |
| 2020-08-25 | Merge PR #12882: Perform a few tweaks to make the bench script work properly. | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer Ack-by: ppedrot | |||
| 2020-08-25 | Merge PR #12798: Change OUnit package name to ounit2. | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-08-25 | Merge PR #12870: CI: stop testing 4.11+trunk | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-08-25 | Merge PR #12778: Merging is now possible with coqbot. | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-08-25 | Fix slow Print Universes Subgraph when many ambient universes. | Gaëtan Gilbert | |
| Fix #12688. Original test: ~~~coq Record my_mod: Type := mk { datatype: Type; }. Print Universes Subgraph (my_mod.u0). (* OK *) From ITree Require Export ITree. (* using coq-itree for the sake of example *) Print Universes Subgraph (my_mod.u0). (* Runs forever (> 1 min) *) ~~~ The issue is that we produce a subgraph with the user-given universes + Set and Prop. In the test the user given universes are not connected to other universes, but Set is below every universe so we traverse the whole graph. We can go faster by just checking whether Set is strictly below each universe we're interested in. Maybe this would be better handled at the ugraph level but that requires thinking about lbound so I didn't do it. I tested locally with Require Reals, which makes the print take about 0.1s on my PC before this patch. This is enough to check that we're now faster (near-instant) but not enough for automatic testing. Note that the other uses of UGraph.constraints_for (for private polymorphic universes and for context restriction) are interested in all ambient universes so the traversals starting at Set end quickly and do not cause the same issue. | |||
| 2020-08-25 | Merge PR #12878: Update sigma instead of erasing it in `update_global_env` | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-08-25 | Add /dev/bench to CODEOWNERS | Gaëtan Gilbert | |
| 2020-08-24 | Merge PR #12886: Fix Coqtail test directory. | Gaëtan Gilbert | |
| Reviewed-by: SkySkimmer | |||
| 2020-08-24 | Fix Coqtail test directory. | whonore | |
| Tests moved in https://github.com/whonore/Coqtail/pull/134. | |||
| 2020-08-24 | Put cyclic numbers in sort Set instead of Type | Vincent Semeria | |
| Added user overlay for bignums | |||
| 2020-08-24 | Merge PR #12868: Lint stdlib with -mangle-names #1 | Anton Trunov | |
| Reviewed-by: anton-trunov | |||
| 2020-08-24 | Merge PR #12835: Slightly reorganising the test suite to follow its ↵ | Hugo Herbelin | |
| documentation Reviewed-by: SkySkimmer Reviewed-by: herbelin Reviewed-by: jfehrle | |||
| 2020-08-24 | Merge PR #12565: Dnets now consider axioms as being opaque for pattern ↵ | coqbot | |
| recognition. Reviewed-by: mattam82 | |||
| 2020-08-24 | Update sigma instead of erasing it in `update_global_env` | Maxime Dénès | |
| 2020-08-24 | Bench: artifact logs | Gaëtan Gilbert | |
| 2020-08-24 | Merge PR #12738: Fix subject reduction VS cumulative inductives and function eta | coqbot | |
| Reviewed-by: mattam82 Ack-by: ppedrot | |||
| 2020-08-24 | Perform a few tweaks to make the bench script work properly. | Pierre-Marie Pédrot | |
| 2020-08-24 | Merge PR #12864: Improve `make approve-output` | Gaëtan Gilbert | |
| Reviewed-by: SkySkimmer | |||
