Skip to content
Snippets Groups Projects
  1. Jun 16, 2019
    • Robbert Krebbers's avatar
      Replace `C`s with `O`s since we use OFEs instead of COFEs. · 2855d1f5
      Robbert Krebbers authored
      Used the following script:
      
      sed '
      s/\bCofeMor/OfeMor/g;
      s/\-c>/\-d>/g;
      s/\bcFunctor/oFunctor/g;
      s/\bCFunctor/OFunctor/g;
      s/\b\%CF/\%OF/g;
      s/\bconstCF/constOF/g;
      s/\bidCF/idOF/g
      s/\bdiscreteC/discreteO/g;
      s/\bleibnizC/leibnizO/g;
      s/\bunitC/unitO/g;
      s/\bprodC/prodO/g;
      s/\bsumC/sumO/g;
      s/\bboolC/boolO/g;
      s/\bnatC/natO/g;
      s/\bpositiveC/positiveO/g;
      s/\bNC/NO/g;
      s/\bZC/ZO/g;
      s/\boptionC/optionO/g;
      s/\blaterC/laterO/g;
      s/\bofe\_fun/discrete\_fun/g;
      s/\bdiscrete\_funC/discrete\_funO/g;
      s/\bofe\_morC/ofe\_morO/g;
      s/\bsigC/sigO/g;
      s/\buPredC/uPredO/g;
      s/\bcsumC/csumO/g;
      s/\bagreeC/agreeO/g;
      s/\bauthC/authO/g;
      s/\bnamespace_mapC/namespace\_mapO/g;
      s/\bcmra\_ofeC/cmra\_ofeO/g;
      s/\bucmra\_ofeC/ucmra\_ofeO/g;
      s/\bexclC/exclO/g;
      s/\bgmapC/gmapO/g;
      s/\blistC/listO/g;
      s/\bvecC/vecO/g;
      s/\bgsetC/gsetO/g;
      s/\bgset\_disjC/gset\_disjO/g;
      s/\bcoPsetC/coPsetO/g;
      s/\bgmultisetC/gmultisetO/g;
      s/\bufracC/ufracO/g
      s/\bfracC/fracO/g;
      s/\bvalidityC/validityO/g;
      s/\bbi\_ofeC/bi\_ofeO/g;
      s/\bsbi\_ofeC/sbi\_ofeO/g;
      s/\bmonPredC/monPredO/g;
      s/\bstateC/stateO/g;
      s/\bvalC/valO/g;
      s/\bexprC/exprO/g;
      s/\blocC/locO/g;
      ' -i $(find theories -name "*.v")
      2855d1f5
  2. Jun 03, 2019
  3. Jan 24, 2019
  4. Nov 01, 2018
  5. Jun 20, 2018
  6. Jan 27, 2017
  7. Jan 05, 2017
  8. Jan 04, 2017
  9. Jan 03, 2017
  10. Dec 09, 2016
  11. Nov 22, 2016
  12. Aug 08, 2016
    • Robbert Krebbers's avatar
    • Ralf Jung's avatar
      Better Coq 8.6 compatibility · ae135201
      Ralf Jung authored
      With Coq 8.6, you can no longer have intro patterns that give more names than
      the constructor has.  Also, patterns with too few names are now interpreted as
      filling up with "?", rather than putting the unnamed parts into the goal again.
      
      Furthermore, it seems the behavior of "simplify_eq/=" changed, I guess
      hypotheses are considered in different order now.  I managed to work around
      this, but it all seem kind of fragile.
      
      The next compilation failure is an "Anyomaly: ... Please report", so that's what I will do.
      ae135201
  13. May 25, 2016
    • Robbert Krebbers's avatar
      Tweak the algebraic hierarchy. · a3d0a338
      Robbert Krebbers authored
      - Make the carrier argument of the constructors for the canonical structures
        cofeT and cmraT explicit. This way we make sure the carrier is properly
        exposed, instead of some alias of the carrier.
      - Make derived constructions (such as discreteC and discreteR) notations
        instead of definitions. This is yet again to make sure that the carrier is
        properly exposed.
      - Turn DRA into a canonical structure (it used to be a type class).
      
      This fixes some issues, notably it fixes some broken rewrites in algebra/sts
      and it makes canonical structures work properly with dec_agree.
      a3d0a338
  14. Mar 10, 2016
  15. Mar 07, 2016
    • Ralf Jung's avatar
      Add both non-expansive and contractive functors, and bundle them for the... · 2467bf21
      Ralf Jung authored
      Add both non-expansive and contractive functors, and bundle them for the general Iris instance as well as the global functor construction
      
      This allows us to move the \later in the user-defined functor to any place we want.
      In particular, we can now have "\later (iProp -> iProp)" in the ghost CMRA.
      2467bf21
  16. Mar 06, 2016
  17. Mar 02, 2016
  18. Feb 29, 2016
  19. Feb 20, 2016
  20. Feb 18, 2016
  21. Feb 17, 2016
  22. Feb 13, 2016
  23. Feb 12, 2016
  24. Feb 10, 2016
    • Robbert Krebbers's avatar
      COFE distance is no longer trivial at index 0. · 07d525a0
      Robbert Krebbers authored
      This way we avoid many one-off indexes and no longer need special cases for
      index 0 in many definitions. For example, the definition of the distance
      relation on option and excl has become much easier. Also, uPreds no longer need
      to hold at index 0.
      
      In order to make this change possible, we had to change the notions of
      "contractive functions" and "chains" slightly.
      
      Thanks to Aleš Bizjak and Amin Timany for suggesting this change and to help
      with the proofs.
      07d525a0
    • Ralf Jung's avatar
      f6909092
  25. Feb 04, 2016
  26. Feb 01, 2016
    • Robbert Krebbers's avatar
      Remove RA from the hierarchy. · b936a5ca
      Robbert Krebbers authored
      Instead, we have just a construction to create a CMRA from a RA. This
      construction is also slightly generalized, it now works for RAs over any
      timeless COFE instead of just the discrete COFE.
      
      Also:
      * Put tactics and big_ops for CMRAs in a separate file.
      * Valid is now a derived notion (as the limit of validN), so it does not have
        to be defined by hand for each CMRA.
      
      Todo:
      Make the constructions DRA -> CMRA and RA -> CMRA more uniform.
      b936a5ca
  27. Jan 14, 2016
  28. Jan 13, 2016
  29. Dec 15, 2015
  30. Nov 17, 2015
  31. Nov 16, 2015
  32. Nov 11, 2015
Loading