Skip to content
Snippets Groups Projects
  1. Apr 14, 2020
  2. Mar 16, 2020
  3. Feb 28, 2020
  4. Feb 23, 2020
  5. Feb 18, 2020
  6. Dec 06, 2019
  7. Aug 13, 2019
  8. Aug 07, 2019
  9. Jun 29, 2019
  10. Jun 24, 2019
  11. May 31, 2019
  12. Apr 07, 2019
  13. Mar 05, 2019
  14. Feb 05, 2019
  15. Nov 27, 2018
  16. Oct 31, 2018
  17. Oct 29, 2018
    • Jacques-Henri Jourdan's avatar
      wp_pures. · 2950fca6
      Jacques-Henri Jourdan authored
      2950fca6
    • 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
  18. Oct 04, 2018
  19. Oct 03, 2018
  20. Jul 04, 2018
  21. Jul 02, 2018
  22. Jun 30, 2018
  23. Jun 29, 2018
  24. Jun 14, 2018
  25. Jun 13, 2018
  26. Jun 06, 2018
  27. May 17, 2018
  28. Apr 27, 2018
  29. Apr 23, 2018
Loading