| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-29 | Merge PR #13510: Add missing print registration for wit_nat_or_var | coqbot-app[bot] | |
| Reviewed-by: herbelin | |||
| 2020-11-29 | Fixing printing of apply in (continuation of #12246). | Hugo Herbelin | |
| 2020-11-28 | Add missing print registration for wit_nat_or_var | Jim Fehrle | |
| 2020-11-27 | Revert "Remove deprecated tactic cutrewrite." | Théo Zimmermann | |
| This reverts commit f3642ad8bdf6d9aa1b411892e5e6815a6a75e4d5. | |||
| 2020-11-26 | Merge PR #13415: Separate interning and pretyping of universes | coqbot-app[bot] | |
| Reviewed-by: mattam82 | |||
| 2020-11-25 | Merge PR #13447: Remove unused parsing code | coqbot-app[bot] | |
| Reviewed-by: herbelin | |||
| 2020-11-25 | Separate interning and pretyping of universes | Gaëtan Gilbert | |
| This allows proper treatment in notations, ie fixes #13303 The "glob" representation of universes (what pretyping sees) contains only fully interpreted (kernel) universes and unbound universe ids (for non Strict Universe Declaration). This means universes need to be understood at intern time, so intern now has a new "universe binders" argument. We cannot avoid this due to the following example: ~~~coq Module Import M. Universe i. End M. Definition foo@{i} := Type@{i}. ~~~ When interning `Type@{i}` we need to know that `i` is locally bound to avoid interning it as `M.i`. Extern has a symmetrical problem: ~~~coq Module Import M. Universe i. End M. Polymorphic Definition foo@{i} := Type@{M.i} -> Type@{i}. Print foo. (* must not print Type@{i} -> Type@{i} *) ~~~ (Polymorphic as otherwise the local `i` will be called `foo.i`) Therefore extern also takes a universe binders argument. Note that the current implementation actually replaces local universes with names at detype type. (Asymmetrical to pretyping which only gets names in glob terms for dynamically declared univs, although it's capable of understanding bound univs too) As such extern only really needs the domain of the universe binders (ie the set of bound universe ids), we just arbitrarily pass the whole universe binders to avoid putting `Id.Map.domain` at every entry point. Note that if we want to change so that detyping does not name locally bound univs we would need to pass the reverse universe binders (map from levels to ids, contained in the ustate ie in the evar map) to extern. | |||
| 2020-11-23 | Merge PR #13417: Use nat_or_var in grammar where negative values don't make ↵ | coqbot-app[bot] | |
| sense Reviewed-by: Zimmi48 | |||
| 2020-11-22 | Remove unused parsing code | Jim Fehrle | |
| 2020-11-21 | Merge PR #12246: Adding support for applying in several hypotheses at the ↵ | Pierre-Marie Pédrot | |
| same time (granting #9816) Reviewed-by: Zimmi48 Reviewed-by: ppedrot | |||
| 2020-11-20 | Merge PR #13237: Address #13235: avoid passing degenerate in-hyps clauses | Pierre-Marie Pédrot | |
| Reviewed-by: jfehrle Reviewed-by: ppedrot | |||
| 2020-11-20 | Use nat_or_var where negative values don't make sense | Jim Fehrle | |
| 2020-11-20 | Granting #9816: apply in takes several hypotheses. | Hugo Herbelin | |
| 2020-11-20 | Merge PR #13403: Use only nats for occs_nums rather than ints | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 Reviewed-by: herbelin | |||
| 2020-11-18 | Use only nats for occs_nums rather than ints | Jim Fehrle | |
| 2020-11-18 | Merge PR #13341: Finish fixing setoid rewrite under anonymous lambdas ↵ | Pierre-Marie Pédrot | |
| (hopefully) Reviewed-by: ppedrot | |||
| 2020-11-18 | Merge PR #13251: Make sure that setoid_rewrite passes state to subgoals | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-11-17 | Fixes #13235: remove fragile tolerance for degenerate in-hyps clause. | Hugo Herbelin | |
| Co-Authored-By: Jim Fehrle <jim.fehrle@gmail.com> | |||
| 2020-11-16 | Suggesting to use injection when an injection pattern is given to destruct. | Hugo Herbelin | |
| This hopefully clarifies the confusing role of destruct (see #13205). | |||
| 2020-11-16 | Merge PR #13381: Deprecate "eauto @int_or_var @int_or_var", add "bfs eauto" | coqbot-app[bot] | |
| Reviewed-by: Zimmi48 | |||
| 2020-11-16 | Finish fixing setoid rewrite under anonymous lambdas (hopefully) | Gaëtan Gilbert | |
| Fix #13246 Not sure if this is the right thing to do, but it seems to work. | |||
| 2020-11-15 | Deprecate "eauto @int_or_var @int_or_var", add "bfs eauto" | Jim Fehrle | |
| 2020-11-15 | Implement export locality for the remaining Hint commands. | Pierre-Marie Pédrot | |
| 2020-11-12 | Revert to "using" not being a keyword in -noinit mode. | Théo Zimmermann | |
| The IDENT annotations in g_ltac.mlg are required to not break the parser. | |||
| 2020-11-12 | Add support for Proof using in -noinit mode. | Théo Zimmermann | |
| "Proof with" is Ltac-specific but there is no reason why it should be the same for "Proof using". | |||
| 2020-11-06 | Merge PR #13284: Fixing interpretation of rewrite_strat argument in Ltac | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-11-05 | Merge PR #12218: Numeral notations for non inductive types | coqbot-app[bot] | |
| Reviewed-by: herbelin Reviewed-by: JasonGross Reviewed-by: jfehrle Ack-by: Zimmi48 | |||
| 2020-11-02 | Merge PR #13247: Fixes #13241: nested Ltac functions wrongly reporting error ↵ | Pierre-Marie Pédrot | |
| on the inner calls Reviewed-by: ppedrot | |||
| 2020-10-30 | Renaming Numeral into Number | Pierre Roux | |
| 2020-10-29 | Fixing interpretation of rewrite_strat argument in Ltac. | Hugo Herbelin | |
| Ltac variables were not yet supported. | |||
| 2020-10-29 | Use same code for "Print Ltac foo" and "Print foo" when "foo" is an Ltac. | Hugo Herbelin | |
| Adopting the same format means printing "Ltac foo := ..." and not the fully qualified name of foo. | |||
| 2020-10-28 | Fixes #13241 (nested Ltac functions were wrongly reporting error on the ↵ | Hugo Herbelin | |
| inner calls). This continues #12223, #12773, #12992, #12774, #12999. | |||
| 2020-10-27 | Merge PR #13238: Fix some tactic print bugs | coqbot-app[bot] | |
| Reviewed-by: gares Reviewed-by: herbelin Ack-by: ppedrot | |||
| 2020-10-27 | Rename misc nonterminals | Jim Fehrle | |
| 2020-10-27 | Rename tactic_expr -> ltac_expr | Jim Fehrle | |
| 2020-10-27 | Rename operconstr -> term | Jim Fehrle | |
| 2020-10-27 | Merge PR #13075: Introducing the foundations for a name-alias-agnostic API | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer Ack-by: gares Ack-by: ejgallego | |||
| 2020-10-26 | Improve tactic interpreter registration API a bit | Gaëtan Gilbert | |
| Using it feels nicer this way, with GADT details hidden inside comtactic | |||
| 2020-10-26 | Merge PR #13137: [ltac] Avoid magic numbers | coqbot-app[bot] | |
| Reviewed-by: herbelin | |||
| 2020-10-22 | Fix printing of wit_constr and some ssr problems with printing empty lists | Lasse Blaauwbroek | |
| 2020-10-22 | Make sure that setoid_rewrite passes state to subgoals | Lasse Blaauwbroek | |
| 2020-10-22 | Merge PR #13130: setoid_rewrite: record generated name when rewriting under ↵ | Pierre-Marie Pédrot | |
| lambda Reviewed-by: ppedrot | |||
| 2020-10-21 | Deprecate the non-qualified equality functions on kerpairs. | Pierre-Marie Pédrot | |
| This allows to quickly spot the parts of the code that rely on the canonical ordering. When possible we directly introduce the quotient-aware versions. | |||
| 2020-10-19 | Merge PR #13208: Support "Solve Obligations of <ident>" | coqbot-app[bot] | |
| Reviewed-by: SkySkimmer | |||
| 2020-10-19 | Merge PR #13197: Require at least one reference for Typeclasses ↵ | coqbot-app[bot] | |
| Opaque/Transparent Reviewed-by: SkySkimmer | |||
| 2020-10-16 | Merge PR #13195: Add support for "typeclasses eauto bfs <int_or_var_opt>" | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-10-16 | Merge PR #13196: For "Typeclasses eauto", search depth should be a natural, ↵ | Pierre-Marie Pédrot | |
| not an integer Reviewed-by: ppedrot | |||
| 2020-10-15 | Support "Solve Obligations of <ident>" option | Jim Fehrle | |
| 2020-10-15 | Require at least one reference for Typeclasses Opaque/Transparent | Jim Fehrle | |
| (zero references is currently a no-op) | |||
| 2020-10-14 | For "Typeclasses eauto", search depth should be a natural, not an | Jim Fehrle | |
| integer | |||
