- Jan 11, 2017
-
-
Robbert Krebbers authored
-
- Jan 05, 2017
-
-
Ralf Jung authored
-
Robbert Krebbers authored
-
- Jan 04, 2017
-
-
Robbert Krebbers authored
This fixes issue #61.
-
- 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
-
- Jan 01, 2017
-
-
Robbert Krebbers authored
For iApply and iRewrite we want that, but for iDestruct and iMod we do not. This fixes issue #52.
-
- Dec 28, 2016
-
-
Robbert Krebbers authored
-
- Dec 27, 2016
-
-
Robbert Krebbers authored
-
- Dec 20, 2016
-
-
Robbert Krebbers authored
-
Ralf Jung authored
-
- Dec 12, 2016
-
-
Robbert Krebbers authored
I also renamed `iProof` into `iStartProof`, as it is supposed to be something internal, and not a substitute of Coq's `Proof` command (as originally intended).
-
- Dec 09, 2016
-
-
Ralf Jung authored
-
- Nov 29, 2016
-
-
Robbert Krebbers authored
-
- Nov 27, 2016
-
-
Robbert Krebbers authored
This fixes issue #44.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Nov 26, 2016
-
-
Robbert Krebbers authored
-
- Nov 24, 2016
-
-
Jacques-Henri Jourdan authored
The idea on magic wand is to use it for curried lemmas and use ⊢ for uncurried lemmas.
-
- Nov 23, 2016
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Nov 22, 2016
-
-
Ralf Jung authored
-
- Nov 20, 2016
-
-
Robbert Krebbers authored
-
- Nov 10, 2016
-
-
Robbert Krebbers authored
This way we avoid the env_cbv tactic unfolding string related stuff that appears in the goal and hypotheses of the proof mode.
-
- Nov 03, 2016
-
-
Robbert Krebbers authored
The old choice for ★ was a arbitrary: the precedence of the ASCII asterisk * was fixed at a wrong level in Coq, so we had to pick another symbol. The ★ was a random choice from a unicode chart. The new symbol ∗ (as proposed by David Swasey) corresponds better to conventional practise and matches the symbol we use on paper.
-
- Oct 27, 2016
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
Since env_cbv does not unfold these apps, we should do it ourselves, to avoid ending up with partially evaluated terms.
-
- Oct 26, 2016
-
-
Robbert Krebbers authored
This fixes issue 39.
-
- Oct 25, 2016
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
There are now two proof mode tactics for dealing with modalities: - `iModIntro` : introduction of a modality - `iMod pm_trm as (x1 ... xn) "ipat"` : eliminate a modality The behavior of these tactics can be controlled by instances of the `IntroModal` and `ElimModal` type class. We have declared instances for later, except 0, basic updates and fancy updates. The tactic `iMod` is flexible enough that it can also eliminate an updates around a weakest pre, and so forth. The corresponding introduction patterns of these tactics are `!>` and `>`. These tactics replace the tactics `iUpdIntro`, `iUpd` and `iTimeless`. Source of backwards incompatability: the introduction pattern `!>` is used for introduction of arbitrary modalities. It used to introduce laters by stripping of a later of each hypotheses.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
And also rename the corresponding proof mode tactics.
-
- Oct 13, 2016
-
-
Ralf Jung authored
-
- Oct 05, 2016
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Sep 27, 2016
-
-
Robbert Krebbers authored
Used in iRevert, iClear, iFrame, and for generalizing the IH in iInduction and iLöb.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
As proposed by JH Jourdan in issue 34.
-