Skip to content
Snippets Groups Projects
  1. Aug 29, 2023
  2. Feb 13, 2023
    • Adam's avatar
      Extract dfrac notations · 23b4b568
      Adam authored
      This fixes the fixme introduced in !554.
      Coq issue #13654 was fixed by coq pr #14183.
      23b4b568
  3. Aug 15, 2022
  4. Aug 14, 2022
  5. Aug 03, 2022
  6. May 24, 2022
  7. Jul 26, 2021
  8. Jul 19, 2021
  9. Jun 02, 2021
  10. Jan 07, 2021
  11. Dec 18, 2020
  12. Dec 16, 2020
  13. Nov 11, 2020
  14. Sep 10, 2020
  15. May 25, 2020
  16. May 18, 2020
  17. Mar 16, 2020
  18. Sep 13, 2019
    • Jacques-Henri Jourdan's avatar
      Reorder Requires so that we do not depend of Export bugs. · 43a1a90f
      Jacques-Henri Jourdan authored
      The general idea is to first import/export modules which are further
      than the current one, and then import/export modules which are close
      dependencies.
      
      This commit tries to use the same order of imports for every file, and
      describes the convention in ProofGuide.md. There is one exception,
      where we do not follow said convention: in program_logic/weakestpre.v,
      using that order would break printing of texan triples (??).
      43a1a90f
  19. Jun 29, 2019
  20. Jun 24, 2019
  21. Jun 14, 2019
  22. Apr 25, 2019
  23. Jan 24, 2019
  24. 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
  25. Oct 04, 2018
  26. Jul 13, 2018
  27. Jul 02, 2018
  28. Jun 28, 2018
  29. Jun 18, 2018
Loading