| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-10-08 | Check complexity of primitive arrays. | Guillaume Melquiond | |
| 2020-10-08 | Remove occurrences of Parray.reroot. | Guillaume Melquiond | |
| 2020-10-08 | Reroot primitive arrays on access (fix #12947). | Guillaume Melquiond | |
| Semi-persistent arrays are supposed to have amortized O(1) complexity. This commit ensures it, without forcing the user to litter its functions with explicit calls to reroot. This commit also makes rerootk faster by carrying the array along the dependency chain rather than recomputing it at every step. | |||
| 2020-10-07 | Merge PR #13152: Algorithmically faster implementation of ↵ | coqbot-app[bot] | |
| Evarconv.apply_on_subterm Reviewed-by: mattam82 | |||
| 2020-10-07 | Merge PR #13115: Derive Inversion does not allow leftover evars | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-10-07 | Merge PR #13119: Fix retyping anomaly in rewrite | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-10-07 | Explicitly pass around a state in Evarconv.second_order_matching. | Pierre-Marie Pédrot | |
| I know higher-order mutable state shared across call sites is a staple of Matthieu's style, but it is a footgun begging to be abused. | |||
| 2020-10-07 | Algorithmically faster implementation of Evarconv.apply_on_subterm. | Pierre-Marie Pédrot | |
| Instead of repeatedly checking for evars to appear in a term, we perform the search in one single pass. This slowdown was observed in fiat-crypto. This is still a naive algorithm though, since we recompute the set of evars for each subterm. This is thus quadratic. | |||
| 2020-10-06 | Fixing redundant outputs when printing goals, especially in non-"pr_first" mode. | Hugo Herbelin | |
| Here is an example (see test output/goal_output.v for other examples): 2 subgoals, subgoal 1 (?Goal) subgoal 1 (?Goal) is: True subgoal 2 (?Goal0) is: True This is now: 2 subgoals subgoal 1 (?Goal) is: True subgoal 2 (?Goal0) is: True | |||
| 2020-10-06 | Documenting option Set Printing Goal Name. | Hugo Herbelin | |
| 2020-10-06 | Merge PR #13141: Document the removal of forward class hints. | coqbot-app[bot] | |
| Reviewed-by: jfehrle Ack-by: ppedrot | |||
| 2020-10-06 | Use OCaml floating-point operations on 64 bits arch | Pierre Roux | |
| C functions were used for floating-point arithmetic operations, by fear of double rounding that could happen on old x87 on 32 bits architecture. This commit uses OCaml floating-point operations on 64 bits architectures. The following snippet is made 17% faster by this commit. From Coq Require Import Int63 BinPos PrimFloat. Definition foo n := let eps := sub (next_up one) one in Pos.iter (fun x => add x eps) two n. Time Eval native_compute in foo 1000000000. | |||
| 2020-10-06 | Define a new type instance_flag instead of using [unit option] | Gaëtan Gilbert | |
| 2020-10-06 | Remove unused is_class info from cl_context | Gaëtan Gilbert | |
| 2020-10-06 | Implicit_quantifiers don't use precomputed is_class data | Gaëtan Gilbert | |
| Fix #13117 We alternatively could fix the generation of the data with Existing Class but I prefer moving towards removing it. | |||
| 2020-10-06 | Simplify Implicit_quantifiers.combine_params a bit | Gaëtan Gilbert | |
| 2020-10-06 | First list in cl_context is just booleans | Gaëtan Gilbert | |
| Used only by implicit_quantifiers | |||
| 2020-10-05 | Documenting warning about unused variables in pattern clauses. | Hugo Herbelin | |
| Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> | |||
| 2020-10-05 | Change log for #12768. | Hugo Herbelin | |
| Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> | |||
| 2020-10-05 | Adapting theories to unused pattern-matching variable warning. | Hugo Herbelin | |
| 2020-10-05 | Wish #12762: warning on duplicated catch-all pattern with unused named variable. | Hugo Herbelin | |
| An identifier starting with _ deactivates the warning. Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> | |||
| 2020-10-05 | Document the removal of forward class hints. | Théo Zimmermann | |
| 2020-10-04 | Merge PR #13096: Drop prefixes from non-terminal names, e.g. "constr:constr" ↵ | coqbot-app[bot] | |
| -> "constr" Reviewed-by: herbelin Ack-by: Zimmi48 | |||
| 2020-10-04 | Remove prefixes on nonterminal names, e.g. "constr:" and "Prim." | Jim Fehrle | |
| 2020-10-03 | Avoid magic numbers | Jim Fehrle | |
| 2020-10-03 | Merge PR #12985: Remove ocamlformat from the linter and the pre-commit hook. | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 Reviewed-by: gares Reviewed-by: maximedenes Reviewed-by: Matafou Ack-by: ejgallego | |||
| 2020-10-02 | Merge PR #13125: More details in the documentation of native arrays | coqbot-app[bot] | |
| Reviewed-by: jfehrle Ack-by: Blaisorblade Ack-by: herbelin | |||
| 2020-10-02 | More details in the documentation of native arrays | Vincent Semeria | |
| Update doc/sphinx/language/core/primitive.rst Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> Add persistent data structure Update doc/sphinx/language/core/primitive.rst Co-authored-by: Hugo Herbelin <herbelin@users.noreply.github.com> Update doc/sphinx/language/core/primitive.rst Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> Update doc/sphinx/language/core/primitive.rst Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com> | |||
| 2020-10-02 | setoid_rewrite: record generated name when rewriting under lambda | Gaëtan Gilbert | |
| Fix #13129 | |||
| 2020-10-02 | Understand Mangle Names in implicit generalization | Gaëtan Gilbert | |
| Fix #13131 | |||
| 2020-10-02 | Cleanup rewrite.ml | Gaëtan Gilbert | |
| Remove unused arguments and commented code | |||
| 2020-10-02 | Merge PR #13054: {new,setoid_}ring -> ring | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer Reviewed-by: Zimmi48 Ack-by: jfehrle | |||
| 2020-10-02 | {new,setoid_}ring -> ring | Maxime Dénès | |
| I believe this renaming makes it easier for new contributors to discover the code of `ring`. | |||
| 2020-10-02 | Merge PR #13106: Remove the forward class hint feature. | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-10-01 | Merge PR #13108: Getting rid of temerarious EConstr.to_constr in Himsg | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-10-01 | Merge PR #13114: Reimplement Admit Obligations using standard Admitted code | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-10-01 | Merge PR #13116: interp_context_evars: removed unused [shift] argument | coqbot-app[bot] | |
| Reviewed-by: ejgallego | |||
| 2020-10-01 | Merge PR #13123: Fix combining uniform parameters and mutual inductives. | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-09-30 | Fix combining uniform parameters and mutual inductives. | Jasper Hugunin | |
| 2020-09-30 | Fix retyping anomaly in rewrite | Gaëtan Gilbert | |
| Fix #13045 Also make sure future anomalies won't be fed to tclzero. Instead of retyping with lax:true we may question why we produce an ill-typed term in decompose_app_rel: in the | App (f, [|arg|]) -> case we produce `fun x y : T => bla x y` but we have no assurance that the second argument of `bla` should have type `T`. | |||
| 2020-09-30 | Merge PR #13021: Almost fully moving funind to new proof engine | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-09-30 | Merge PR #13032: More precise information when unification fails because of ↵ | Pierre-Marie Pédrot | |
| incompatible candidates Reviewed-by: ppedrot | |||
| 2020-09-30 | Further simplification of the typeclass registration API. | Pierre-Marie Pédrot | |
| 2020-09-30 | Remove the forward class hint feature. | Pierre-Marie Pédrot | |
| It was not documented, not properly tested and thus likely buggy. Judging from the code alone I spotted already one potential bug. Further more it was prominently making use of the infamous "arbitrary term as hint" feature. Since the only user in our CI seems to be a math-classes file that introduced the feature under a claim of "cleanup", I believe we can safely remove it without anyone noticing. | |||
| 2020-09-30 | Derive Inversion does not allow leftover evars | Gaëtan Gilbert | |
| Fix #12917 | |||
| 2020-09-30 | interp_context_evars: removed unused [shift] argument | Gaëtan Gilbert | |
| Became unused in e034b4090ca45410853db60ae2a5d2f220b48792 | |||
| 2020-09-30 | Reimplement Admit Obligations using standard Admitted code | Gaëtan Gilbert | |
| Fix #13109 | |||
| 2020-09-29 | Merge PR #13111: Small document fixes. | coqbot-app[bot] | |
| Reviewed-by: jfehrle | |||
| 2020-09-29 | Applying ocamlformat. | Hugo Herbelin | |
| 2020-09-29 | Almost fully moving funind to new proof engine. | Hugo Herbelin | |
