- Feb 17, 2020
-
-
Robbert Krebbers authored
This closes issue #49.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Feb 14, 2020
-
-
Robbert Krebbers authored
-
- Feb 13, 2020
-
-
- Feb 11, 2020
-
-
In accordance with <iris/stdpp!93>
-
- Jan 30, 2020
-
-
Michael Sammler authored
-
- Jan 18, 2020
-
-
Robbert Krebbers authored
-
- Jan 17, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
Namely, `fmap`, `omap`, `imap`, `mbind`, `mjoin`, `zip_with`. As part of this, refactor slightly to put all `omap`, `imap`, and `seq` results together.
-
- Jan 16, 2020
-
-
Robbert Krebbers authored
-
- Jan 15, 2020
-
-
Robbert Krebbers authored
The `Equiv` instance for the domain is not needed.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Nov 21, 2019
-
-
- Ensure gmap well-formedness proofs are fully opaque. - Use pattern-matching lambdas over lets.
-
- Nov 11, 2019
-
-
Simon Friis Vindum authored
-
- Nov 07, 2019
-
-
Robbert Krebbers authored
There are not documented in https://coq.inria.fr/refman/addendum/type-classes.html?highlight=class#coq:cmd.class, and they don't have any advantage, so it's better to stop using them.
-
- Nov 06, 2019
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Nov 01, 2019
-
-
Amin Timany authored
-
Amin Timany authored
-
- Oct 01, 2019
-
-
Robbert Krebbers authored
Thanks to @jules for the suggestion and an initial proof.
-
- Sep 19, 2019
-
-
Robbert Krebbers authored
For example, change `(!! i)` into `(.!! x)` so that `!!` can also be used as a prefix, as done in VST for example. This closes issue #42. I have used the `sed` script below. This script took care of nearly all uses apart from a few occurrences where a space was missing, e.g. `(,foo)`. In this case, `coqc` will just fail, allowing one to patch up things manually. The script is slightly too eager on Iris developments, where it also replaces `($ ...)` introduction patterns. When porting Iris developments you thus may want to remove the line for `$`. ``` sed ' s/(= /(.= /g; s/ =)/ =.)/g; s/(≠ /(.≠ /g; s/ ≠)/ ≠.)/g; s/(≡ /(.≡ /g; s/ ≡)/ ≡.)/g; s/(≢ /(.≢ /g; s/ ≢)/ ≢.)/g; s/(∧ /(.∧ /g; s/ ∧)/ ∧.)/g; s/(∨ /(.∨ /g; s/ ∨)/ ∨.)/g; s/(
/(. /g; s/ )/ .)/g; s/(→ /(.→ /g; s/ →)/ →.)/g; s/($ /(.$ /g; s/(∘ /(.∘ /g; s/ ∘)/ ∘.)/g; s/(, /(., /g; s/ ,)/ ,.)/g; s/(∘ /(.∘ /g; s/ ∘)/ ∘.)/g; s/(∪ /(.∪ /g; s/ ∪)/ ∪.)/g; s/(⊎ /(.⊎ /g; s/ ⊎)/ ⊎.)/g; s/(∩ /(.∩ /g; s/ ∩)/ ∩.)/g; s/(∖ /(.∖ /g; s/ ∖)/ ∖.)/g; s/(⊆ /(.⊆ /g; s/ ⊆)/ ⊆.)/g; s/(⊈ /(.⊈ /g; s/ ⊈)/ ⊈.)/g; s/(⊂ /(.⊂ /g; s/ ⊂)/ ⊂.)/g; s/(⊄ /(.⊄ /g; s/ ⊄)/ ⊄.)/g; s/(∈ /(.∈ /g; s/ ∈)/ ∈.)/g; s/(∉ /(.∉ /g; s/ ∉)/ ∉.)/g; s/(≫= /(.≫= /g; s/ ≫=)/ ≫=.)/g; s/(!! /(.!! /g; s/ !!)/ !!.)/g; s/(⊑ /(.⊑ /g; s/ ⊑)/ ⊑.)/g; s/(⊓ /(.⊓ /g; s/ ⊓)/ ⊓.)/g; s/(⊔ /(.⊔ /g; s/ ⊔)/ ⊔.)/g; s/(:: /(.:: /g; s/ ::)/ ::.)/g; s/(++ /(.++ /g; s/ ++)/ ++.)/g; s/(≡ₚ /(.≡ₚ /g; s/ ≡ₚ)/ ≡ₚ.)/g; s/(≢ₚ /(.≢ₚ /g; s/ ≢ₚ)/ ≢ₚ.)/g; s/(::: /(.::: /g; s/ :::)/ :::.)/g; s/(+++ /(.+++ /g; s/ +++)/ +++.)/g; ' -i $(find -name "*.v") ``` -
Pierre-Marie Pédrot authored
-
- Sep 11, 2019
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Jacques-Henri Jourdan authored
Use Open/Close Scope without Local (i.e., export the scope opening) only when the scope corresponds to the main purpose of the module.
-
- Sep 05, 2019
-
-
Robbert Krebbers authored
Due to Coq bug #10480 or #10474 it actually used `Morphisms.solve_proper` instead of the version of std++. The version in std++ can inherently not solve this, so I changed it into a manual proof.
-
- Aug 29, 2019
-
-
Michael Sammler authored
-
- Aug 26, 2019
-
-
Michael Sammler authored
-
Ralf Jung authored
-
Ralf Jung authored
-
- Aug 24, 2019
-
-
Dan Frumin authored
-
- Aug 23, 2019
-
-
Robbert Krebbers authored
-
Paolo G. Giarrusso authored
-
- Aug 14, 2019
-
-
Paulo Emílio de Vilhena authored
-
Robbert Krebbers authored
-
- Aug 13, 2019
-
-
- Jul 13, 2019
-
-
Robbert Krebbers authored
-