- Nov 12, 2019
-
-
Robbert Krebbers authored
The space should not be there and was added in oversight. This also provides forwards compatibility with https://github.com/coq/coq/pull/10832.
-
- Jun 24, 2019
- Jun 15, 2019
-
-
Rodolphe Lepigre authored
-
- Jun 13, 2019
-
-
Ralf Jung authored
-
- Jun 11, 2019
-
-
Robbert Krebbers authored
-
- Apr 25, 2019
-
-
Robbert Krebbers authored
-
- Apr 07, 2019
-
-
Robbert Krebbers authored
-
- Mar 14, 2019
-
-
Robbert Krebbers authored
-
- Oct 29, 2018
-
-
Jacques-Henri Jourdan authored
We add a specific constructor to the type of expressions for injecting values in expressions. The advantage are : - Values can be assumed to be always closed when performing substitutions (even though they could contain free variables, but it turns out it does not cause any problem in the proofs in practice). This means that we no longer need the `Closed` typeclass and everything that comes with it (all the reflection-based machinery contained in tactics.v is no longer necessary). I have not measured anything, but I guess this would have a significant performance impact. - There is only one constructor for values. As a result, the AsVal and IntoVal typeclasses are no longer necessary: an expression which is a value will always unify with `Val _`, and therefore lemmas can be stated using this constructor. Of course, this means that there are two ways of writing such a thing as "The pair of integers 1 and 2": Either by using the value constructor applied to the pair represented as a value, or by using the expression pair constructor. So we add reduction rules that transform reduced pair, injection and closure expressions into values. At first, this seems weird, because of the redundancy. But in fact, this has some meaning, since the machine migth actually be doing something to e.g., allocate the pair or the closure. These additional steps of computation show up in the proofs, and some additional wp_* tactics need to be called.
-
- Oct 18, 2018
-
-
Ralf Jung authored
-
- Oct 05, 2018
-
-
Jacques-Henri Jourdan authored
-
Ralf Jung authored
-
- Removing admitted prophecy spec and making prophecy-related examples (coin-flip and atomic-pair-snapshot) work with the new prophecy support in heap_lang - Adjusting heap_lang tactics for automation of substitution, closedness, etc. to support prophecy syntax - Adding notation for prophecy syntax
-
- Added my version of increment.v for practicing working with logically atomic triples - Added implementation of coin-flip spec from Turon et al. (POPL'13) with an assumed spec for prophecy variables
-
- Jun 30, 2018
-
-
Ralf Jung authored
-
- Jun 28, 2018
-
-
Ralf Jung authored
-
- Jun 14, 2018
-
-
Ralf Jung authored
-
- Jun 13, 2018
-
-
Ralf Jung authored
-
- Dec 05, 2017
-
-
Robbert Krebbers authored
-
- Oct 26, 2017
-
-
Robbert Krebbers authored
Coq also uses level 200 for these constructs. Besides, heap_lang's match and if were also already at this level.
-
- Sep 09, 2017
-
-
Robbert Krebbers authored
-
- Jun 06, 2017
-
-
Robbert Krebbers authored
TODO: document this.
-
- Jan 05, 2017
-
-
Ralf Jung authored
-
- Jan 03, 2017
-
-
Ralf Jung authored
This patch was created using find -name *.v | xargs -L 1 awk -i inplace '{from = 0} /^From/{ from = 1; ever_from = 1} { if (from == 0 && seen == 0 && ever_from == 1) { print "Set Default Proof Using \"Type*\"."; seen = 1 } }1 ' and some minor manual editing
-
- Dec 09, 2016
-
-
Ralf Jung authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Dec 08, 2016
-
-
Ralf Jung authored
-
- Nov 09, 2016
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
This reverts commit f3222ba2 because it broke the machinery for determining whether a term is closed. Example, by Morten: Definition dummy : val := λ: <>, #true || #false.
-
- Oct 28, 2016
-
-
Robbert Krebbers authored
Otherwise, some ifs are being pretty printed as || or &&.
-
- Aug 25, 2016
-
-
Janno authored
-
- Aug 05, 2016
-
-
Robbert Krebbers authored
This commit features: - A simpler model. The recursive domain equation no longer involves a triple containing invariants, physical state and ghost state, but just ghost state. Invariants and physical state are encoded using (higher-order) ghost state. - (Primitive) view shifts are formalized in the logic and all properties about it are proven in the logic instead of the model. Instead, the core logic features only a notion of raw view shifts which internalizing performing frame preserving updates. - A better behaved notion of mask changing view shifts. In particular, we no longer have side-conditions on transitivity of view shifts, and we have a rule for introduction of mask changing view shifts |={E1,E2}=> P with E2 ⊆ E1 which allows to postpone performing a view shift. - The weakest precondition connective is formalized in the logic using Banach's fixpoint. All properties about the connective are proven in the logic instead of directly in the model. - Adequacy is proven in the logic and uses a primitive form of adequacy for uPred that only involves raw views shifts and laters. Some remarks: - I have removed binary view shifts. I did not see a way to describe all rules of the new mask changing view shifts using those. - There is no longer the need for the notion of "frame shifting assertions" and these are thus removed. The rules for Hoare triples are thus also stated in terms of primitive view shifts. TODO: - Maybe rename primitive view shift into something more sensible - Figure out a way to deal with closed proofs (see the commented out stuff in tests/heap_lang and tests/barrier_client).
-
- Jul 18, 2016
-
-
Robbert Krebbers authored
-
- Jul 15, 2016
-
-
Robbert Krebbers authored
-
- Jul 12, 2016
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-