Skip to content
Snippets Groups Projects
  1. Mar 15, 2021
  2. Jan 29, 2021
  3. Jan 27, 2021
  4. Jan 20, 2021
  5. Jan 19, 2021
  6. Nov 20, 2020
  7. Sep 16, 2020
  8. May 06, 2020
  9. Apr 16, 2020
  10. Apr 09, 2020
  11. Mar 31, 2020
  12. Mar 13, 2020
  13. Feb 26, 2020
  14. Feb 25, 2020
  15. Jun 30, 2019
  16. Jun 26, 2019
  17. Feb 20, 2019
    • Robbert Krebbers's avatar
      Consistently use `set` and `map` names. · b7e31ce2
      Robbert Krebbers authored
      Get rid of using `Collection` and favor `set` everywhere. Also, prefer conversion
      functions that are called `X_to_Y`.
      
      The following sed script performs most of the renaming, with the exception of:
      
      - `set`, which has been renamed into `propset`. I couldn't do this rename
        using `sed` since it's too context sensitive.
      - There was a spurious rename of `Vec.of_list`, which I correctly manually.
      - Updating some section names and comments.
      
      ```
      sed '
      s/SimpleCollection/SemiSet/g;
      s/FinCollection/FinSet/g;
      s/CollectionMonad/MonadSet/g;
      s/Collection/Set\_/g;
      s/collection\_simple/set\_semi\_set/g;
      s/fin\_collection/fin\_set/g;
      s/collection\_monad\_simple/monad\_set\_semi\_set/g;
      s/collection\_equiv/set\_equiv/g;
      s/\bbset/boolset/g;
      s/mkBSet/BoolSet/g;
      s/mkSet/PropSet/g;
      s/set\_equivalence/set\_equiv\_equivalence/g;
      s/collection\_subseteq/set\_subseteq/g;
      s/collection\_disjoint/set\_disjoint/g;
      s/collection\_fold/set\_fold/g;
      s/collection\_map/set\_map/g;
      s/collection\_size/set\_size/g;
      s/collection\_filter/set\_filter/g;
      s/collection\_guard/set\_guard/g;
      s/collection\_choose/set\_choose/g;
      s/collection\_ind/set\_ind/g;
      s/collection\_wf/set\_wf/g;
      s/map\_to\_collection/map\_to\_set/g;
      s/map\_of\_collection/set\_to\_map/g;
      s/map\_of\_list/list\_to\_map/g;
      s/map\_of\_to_list/list\_to\_map\_to\_list/g;
      s/map\_to\_of\_list/map\_to\_list\_to\_map/g;
      s/\bof\_list/list\_to\_set/g;
      s/\bof\_option/option\_to\_set/g;
      s/elem\_of\_of\_list/elem\_of\_list\_to\_set/g;
      s/elem\_of\_of\_option/elem\_of\_option\_to\_set/g;
      s/collection\_not\_subset\_inv/set\_not\_subset\_inv/g;
      s/seq\_set/set\_seq/g;
      s/collections/sets/g;
      s/collection/set/g;
      ' -i $(find -name "*.v")
      ```
      b7e31ce2
  18. Jan 29, 2019
  19. Jan 25, 2019
  20. Apr 21, 2018
  21. Apr 05, 2018
  22. Feb 12, 2018
  23. Jan 31, 2018
  24. Nov 18, 2017
  25. Nov 16, 2017
  26. Nov 11, 2017
  27. Oct 09, 2017
  28. Aug 17, 2017
  29. Mar 15, 2017
  30. Mar 08, 2017
  31. Mar 01, 2017
  32. Feb 22, 2017
  33. Feb 03, 2017
  34. Jan 31, 2017
Loading