diff --git a/combinatorics.wiki b/combinatorics.wiki index 97465df..ada2f25 100644 --- a/combinatorics.wiki +++ b/combinatorics.wiki @@ -122,6 +122,36 @@ Map every ''k''-combination (partial unordered subset) of {{list}} using {{f}}. ((f list k) (unordered-subset-fold (lambda (v a) (cons (f v) a)) '() list k)))) +==== {{permutation-for-each}} +permutation-for-each → ordered-subset-for-each +Synonym for [[#ordered-subset-for-each]] +(define permutation-for-each ordered-subset-for-each) + +==== {{permutation-fold}} +permutation-fold → ordered-subset-fold +Synonym for [[#ordered-subset-fold]] +(define permutation-fold ordered-subset-fold) + +==== {{permutation-map}} +permutation-map → ordered-subset-map +Synonym for [[#ordered-subset-map]] +(define permutation-map ordered-subset-map) + +==== {{combination-for-each}} +combination-for-each → unordered-subset-for-each +Synonym for [[#unordered-subset-for-each]] +(define combination-for-each unordered-subset-for-each) + +==== {{combination-fold}} +combination-fold → unordered-subset-fold +Synonym for [[#unordered-subset-fold]] +(define combination-fold unordered-subset-fold) + +==== {{combination-map}} +combination-map → unordered-subset-map +Synonym for [[#unordered-subset-map]] +(define combination-map unordered-subset-map) + === About this egg ==== Author @@ -134,15 +164,17 @@ BSD ==== Dependencies * [[cock]] * [[setup-helper]] +* [[setup-helper-cock]] * [[vector-lib]] ==== Versions -; 0.1 : Start with ordered-subset operations. -; 0.2 : Add unordered subset operations. -; 0.3 : Add documentation. -; 0.3.1 : Add some tests. -; 0.3.2 : Tests depend on `test'. -; 0.3.3 : Actually map the values. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.3.4|0.3.4]] : Add the combination- and permutation-synonyms. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.1|0.1]] : Start with ordered-subset operations. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.2|0.2]] : Add unordered subset operations. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.3|0.3]] : Add documentation. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.3.1|0.3.1]] : Add some tests. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.3.2|0.3.2]] : Tests depend on `test'. +; [[https://github.com/klutometis/combinatorics/releases/tag/0.3.3|0.3.3]] : Actually map the values. ==== Colophon Documented by [[/egg/cock|cock]]. \ No newline at end of file