- Jul 22, 2020
-
-
Fixes #337.
-
- Jul 21, 2020
-
-
Tej Chajed authored
Preserve identifiers in binders where possible, analogous to the support for destructing existentials in !479. Fixes #336.
-
When running `iDestruct "H" as (?) "H"`, use the name of the binder in "H". For example, if "H" has type `∃ y, Φ y`, we now use `y` as the name of the variable after freshening. Previously the name was always the equivalent of running `fresh H`. The implementation achieves this by forwarding the desired identifier name through the `IntoExist` typeclass. Identifiers are serialized in Gallina by using them as the name of a function of type `ident_name := unit -> unit`.
-
- Jul 15, 2020
-
-
Robbert Krebbers authored
-
- Jul 14, 2020
-
-
Ralf Jung authored
-
- Jun 30, 2020
-
-
Simon Friis Vindum authored
-
- Jun 29, 2020
-
-
Simon Friis Vindum authored
-
- Jun 26, 2020
-
-
Ralf Jung authored
-
- Jun 12, 2020
-
-
Tej Chajed authored
Fixes #325. Also added a tests for the various `iSpecialize` error cases involving the `[%]` and `[//]` specialization patterns.
-
- May 25, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- May 24, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- May 23, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- May 07, 2020
-
-
Ralf Jung authored
-
- Apr 22, 2020
-
-
Paolo G. Giarrusso authored
-
- Apr 07, 2020
-
-
Tej Chajed authored
-
Tej Chajed authored
Fixes #307.
-
- Apr 06, 2020
-
-
Tej Chajed authored
-
Tej Chajed authored
Notably this support relies on string to identifier conversion, which works natively using Ltac2 in Coq 8.11+ and with a plugin (https://github.com/ppedrot/coq-string-ident) in Coq 8.10. To use it, you must replace intro_patterns.string_to_ident_hook with a real implementation; see https://gitlab.mpi-sws.org/iris/string-ident for a working implementation that works with Coq 8.11 (using Ltac2). The syntax is %H (within a string intro pattern). This is technically backwards-incompatible, because this was previously supported and parsed as % and H separately. To restore the old behavior, separate with a space, eg [% H].
-
- Apr 03, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Apr 02, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Mar 31, 2020
-
-
Robbert Krebbers authored
-
- Mar 20, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
- The error messages were wrong: the goal needs to be absorbing, not the hypothesis. - The wrong failure number was used in `iAssumption`, which caused the error not to be propagated properly.
-
Robbert Krebbers authored
-
- Mar 18, 2020
-
-
Robbert Krebbers authored
-
- Mar 16, 2020
-
-
- remove "odd" comment - move atomic triples to bi_scope
-
- Feb 18, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
It was already marked as deprecated in `doc/proof_mode.md`.
-
Robbert Krebbers authored
- Rename `IPureElim` -> `iPure`, `IAlwaysElim` -> `IIntuitionistic` - Drop `IAlwaysIntro` (it's just `IModalIntro`).
-
- Feb 15, 2020
-
-
Fixes a new warning on Coq 8.12+alpha when implicit annotations are used in positions where they are ignored.
-
- Feb 10, 2020
-
-
Robbert Krebbers authored
-
- Feb 02, 2020
-
-
Coq master is stricter about checking for meaningless implicit binders; see https://github.com/coq/coq/pull/10202.
-