- Jan 08, 2020
-
-
Ralf Jung authored
-
- Sep 13, 2019
-
-
Jacques-Henri Jourdan authored
The general idea is to first import/export modules which are further than the current one, and then import/export modules which are close dependencies. This commit tries to use the same order of imports for every file, and describes the convention in ProofGuide.md. There is one exception, where we do not follow said convention: in program_logic/weakestpre.v, using that order would break printing of texan triples (??).
-
- Aug 07, 2019
-
-
Ralf Jung authored
-
- Jun 29, 2019
-
-
Ralf Jung authored
This also gets rid of [val_for_compare]-normalization; instead we introduce a [LitErased] literal that is suited for use by erasure theorems.
-
- Jun 24, 2019
- Jun 18, 2019
- Jun 17, 2019
-
-
Paolo G. Giarrusso authored
-
- Jun 14, 2019
-
-
Ralf Jung authored
-
- Jun 10, 2019
-
-
Robbert Krebbers authored
-
- May 31, 2019
-
-
Amin Timany authored
-
- Mar 14, 2019
-
-
Robbert Krebbers authored
-
- Mar 05, 2019
-
-
Ralf Jung authored
-
- Mar 01, 2019
-
-
Robbert Krebbers authored
-
- Jan 24, 2019
- Nov 27, 2018
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
This closes issue #220.
-
- Oct 31, 2018
-
-
Jacques-Henri Jourdan authored
-
- Oct 29, 2018
-
-
Jacques-Henri Jourdan authored
-
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 05, 2018
-
-
Robbert Krebbers authored
-
Ralf Jung authored
-
- Removing head of list of observations after each reduction step in definition of wp - Adding support for observations to state_interp and world - Applying Ralf's suggestions to previous commit (e.g. replacing /\ and -> with unicode characters)
-
- Jul 05, 2018
-
-
Ralf Jung authored
-
- Jul 04, 2018
- Jul 03, 2018
-
-
Ralf Jung authored
With a pretty proof by Robbert
-
- Jul 02, 2018
-
-
Ralf Jung authored
-
- Jun 30, 2018
-
-
Ralf Jung authored
-
- Jun 29, 2018
-
-
Ralf Jung authored
-
- Jun 28, 2018
-
-
Ralf Jung authored
This restricts CAS to only be able to compare literals with literals, NONEV with NONEV and NONEV with SOMEV for a literal.
-
- Jun 15, 2018
-
-
Ralf Jung authored
* move PROP-envs definitions to environments.v so that we can control them without pulling in coq_tactics * use reduction-controlled `pm_default` for proofmode accessors
-