Skip to content
Snippets Groups Projects
  1. Oct 27, 2016
  2. Oct 26, 2016
  3. Oct 25, 2016
  4. Oct 18, 2016
  5. Oct 16, 2016
  6. Oct 13, 2016
  7. Oct 12, 2016
  8. Oct 10, 2016
  9. Oct 07, 2016
  10. Oct 06, 2016
  11. Oct 05, 2016
  12. Sep 28, 2016
  13. Sep 27, 2016
  14. Sep 20, 2016
  15. Sep 09, 2016
    • Robbert Krebbers's avatar
      Remove useless scope delimiters. · d6dc89b4
      Robbert Krebbers authored
      d6dc89b4
    • Robbert Krebbers's avatar
      Support for specialization of P₁ -★ .. -★ Pₙ -★ Q where Q is persistent. · 090aaea3
      Robbert Krebbers authored
      Before this commit, given "HP" : P and "H" : P -★ Q with Q persistent, one
      could write:
      
        iSpecialize ("H" with "#HP")
      
      to eliminate the wand in "H" while keeping the resource "HP". The lemma:
      
        own_valid : own γ x ⊢ ✓ x
      
      was the prototypical example where this pattern (using the #) was used.
      
      However, the pattern was too limited. For example, given "H" : P₁ -★ P₂ -★ Q",
      one could not write iSpecialize ("H" with "#HP₁") because P₂ -★ Q is not
      persistent, even when Q is.
      
      So, instead, this commit introduces the following tactic:
      
        iSpecialize pm_trm as #
      
      which allows one to eliminate implications and wands while being able to use
      all hypotheses to prove the premises, as well as being able to use all
      hypotheses to prove the resulting goal.
      
      In the case of iDestruct, we now check whether all branches of the introduction
      pattern start with an `#` (moving the hypothesis to the persistent context) or
      `%` (moving the hypothesis to the pure Coq context). If this is the case, we
      allow one to use all hypotheses for proving the premises, as well as for proving
      the resulting goal.
      090aaea3
    • Jacques-Henri Jourdan's avatar
      7709aeaf
  16. Sep 07, 2016
  17. Sep 06, 2016
  18. Sep 05, 2016
Loading