- 12 Aug, 2020 1 commit
-
-
Ralf Jung authored
-
- 12 Nov, 2019 1 commit
-
-
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.
-
- 24 Jun, 2019 3 commits
- 15 Jun, 2019 1 commit
-
-
Rodolphe Lepigre authored
-
- 13 Jun, 2019 1 commit
-
-
Ralf Jung authored
-
- 11 Jun, 2019 1 commit
-
-
Robbert Krebbers authored
-
- 25 Apr, 2019 1 commit
-
-
Robbert Krebbers authored
-
- 07 Apr, 2019 1 commit
-
-
Robbert Krebbers authored
-
- 14 Mar, 2019 1 commit
-
-
Robbert Krebbers authored
-
- 29 Oct, 2018 1 commit
-
-
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 t...
-
- 18 Oct, 2018 1 commit
-
-
Ralf Jung authored
-
- 05 Oct, 2018 4 commits
-
-
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
-
- 30 Jun, 2018 1 commit
-
-
Ralf Jung authored
-
- 28 Jun, 2018 1 commit
-
-
Ralf Jung authored
-
- 14 Jun, 2018 1 commit
-
-
Ralf Jung authored
-
- 13 Jun, 2018 1 commit
-
-
Ralf Jung authored
-
- 05 Dec, 2017 1 commit
-
-
Robbert Krebbers authored
-
- 26 Oct, 2017 1 commit
-
-
Robbert Krebbers authored
Coq also uses level 200 for these constructs. Besides, heap_lang's match and if were also already at this level.
-
- 09 Sep, 2017 1 commit
-
-
Robbert Krebbers authored
-
- 06 Jun, 2017 1 commit
-
-
Robbert Krebbers authored
TODO: document this.
-
- 05 Jan, 2017 1 commit
-
-
Ralf Jung authored
-
- 03 Jan, 2017 1 commit
-
-
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
-
- 09 Dec, 2016 3 commits
-
-
Ralf Jung authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- 08 Dec, 2016 1 commit
-
-
Ralf Jung authored
-
- 09 Nov, 2016 3 commits
-
-
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.
-
- 28 Oct, 2016 1 commit
-
-
Robbert Krebbers authored
Otherwise, some ifs are being pretty printed as || or &&.
-
- 25 Aug, 2016 1 commit
-
-
Janno authored
-
- 05 Aug, 2016 1 commit
-
-
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).
-
- 18 Jul, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 15 Jul, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 12 Jul, 2016 1 commit
-
-
Robbert Krebbers authored
-