Skip to content
Snippets Groups Projects
  1. Jul 14, 2020
  2. Jun 16, 2020
  3. May 25, 2020
  4. May 24, 2020
  5. May 23, 2020
  6. May 18, 2020
  7. Apr 07, 2020
  8. Apr 01, 2020
  9. Feb 25, 2020
  10. Feb 14, 2020
  11. Jan 13, 2020
  12. Nov 21, 2019
  13. Aug 12, 2019
  14. Aug 07, 2019
  15. Jun 24, 2019
  16. Jun 20, 2019
  17. Jun 13, 2019
  18. Jun 11, 2019
    • Robbert Krebbers's avatar
      The unbounded fractional authoritative camera. · 151dda05
      Robbert Krebbers authored
      The unbounded fractional authoritative camera is a version of the fractional
      authoritative camera that can be used with fractions `> 1`.
      
      Most of the reasoning principles for this version of the fractional
      authoritative cameras are the same as for the original version. There are two
      difference:
      
      - We get the additional rule that can be used to allocate a "surplus", i.e.
        if we have the authoritative element we can always increase its fraction
        and allocate a new fragment.
      
            ✓ (a ⋅ b) → ●U{p} a ~~> ●U{p + q} (a ⋅ b) ⋅ ◯U{q} b
      
      - At the cost of that, we no longer have the `◯U{1} a` is an exclusive
        fragmental element (cf. `frac_auth_frag_validN_op_1_l`).
      151dda05
  19. Jun 10, 2019
  20. May 31, 2019
  21. May 25, 2019
  22. May 08, 2019
  23. Mar 20, 2019
  24. Mar 19, 2019
  25. Feb 01, 2019
  26. Dec 21, 2018
  27. Oct 29, 2018
    • Jacques-Henri Jourdan's avatar
      A specific constructor for injecting values in expressions · 9646293e
      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.
      9646293e
  28. Oct 05, 2018
Loading