Skip to content
Snippets Groups Projects
  1. Oct 25, 2016
  2. Oct 13, 2016
  3. Oct 05, 2016
  4. Sep 28, 2016
  5. Sep 27, 2016
  6. Sep 20, 2016
  7. Sep 19, 2016
  8. Sep 15, 2016
  9. Sep 09, 2016
    • Robbert Krebbers's avatar
    • Robbert Krebbers's avatar
    • 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
  10. Sep 05, 2016
  11. Aug 30, 2016
  12. Aug 29, 2016
  13. Aug 25, 2016
  14. Aug 24, 2016
  15. Aug 08, 2016
Loading