aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorEduardo Julian2017-06-23 19:48:36 -0400
committerEduardo Julian2017-06-23 19:48:36 -0400
commitbed22d326d1a7555dbcfd589da51a592bfa9113b (patch)
treed597299e84a97ce3e0af93150b58744bf122c94e /stdlib
parent024d9990d005971e5c9a238bda8de620cd3b2fc1 (diff)
- Added Fold structure for rose trees.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/source/lux/data/coll/tree/rose.lux12
-rw-r--r--stdlib/test/test/lux/data/coll/tree/rose.lux51
2 files changed, 41 insertions, 22 deletions
diff --git a/stdlib/source/lux/data/coll/tree/rose.lux b/stdlib/source/lux/data/coll/tree/rose.lux
index 5493d6692..b4ac0c313 100644
--- a/stdlib/source/lux/data/coll/tree/rose.lux
+++ b/stdlib/source/lux/data/coll/tree/rose.lux
@@ -3,8 +3,9 @@
(lux (control functor
monad
eq
- ["p" parser])
- (data (coll [list "L/" Monad<List>]))
+ ["p" parser]
+ fold)
+ (data (coll [list "L/" Monad<List> Fold<List>]))
[macro]
(macro [code]
["s" syntax #+ syntax: Syntax])))
@@ -63,3 +64,10 @@
{#value (f (get@ #value fa))
#children (L/map (map f)
(get@ #children fa))}))
+
+(struct: #export _ (Fold Tree)
+ (def: (fold f init tree)
+ (L/fold (function [tree' init'] (fold f init' tree'))
+ (f (get@ #value tree)
+ init)
+ (get@ #children tree))))
diff --git a/stdlib/test/test/lux/data/coll/tree/rose.lux b/stdlib/test/test/lux/data/coll/tree/rose.lux
index 2933452f6..fe8ffa71b 100644
--- a/stdlib/test/test/lux/data/coll/tree/rose.lux
+++ b/stdlib/test/test/lux/data/coll/tree/rose.lux
@@ -2,33 +2,44 @@
lux
(lux [io]
(control monad)
- (data (coll (tree ["&" rose])
- [list "List/" Monad<List>])
- [number])
- ["R" math/random])
+ (data [product]
+ [number]
+ [text "T/" Eq<Text>]
+ text/format
+ (coll (tree ["&" rose])
+ [list "L/" Monad<List> Fold<List>]))
+ ["r" math/random])
lux/test)
-(def: gen-nat
- (R;Random Nat)
- (|> R;nat
- (:: R;Monad<Random> map (n.% +100))))
+(def: gen-tree
+ (r;Random [Nat (&;Tree Nat)])
+ (r;rec
+ (function [gen-tree]
+ (r;either (:: r;Monad<Random> map (|>. &;leaf [+1]) r;nat)
+ (do r;Monad<Random>
+ [value r;nat
+ num-children (|> r;nat (:: @ map (n.% +3)))
+ children' (r;list num-children gen-tree)
+ #let [size' (L/fold n.+ +0 (L/map product;left children'))
+ children (L/map product;right children')]]
+ (wrap [(n.inc size')
+ (&;branch value children)]))
+ ))))
(context: "Trees"
- [leaf (:: @ map &;leaf R;nat)
- branchS gen-nat
- branchV R;nat
- branchC (R;list branchS R;nat)
- #let [branch (&;branch branchV (List/map &;leaf branchC))]
+ [[size sample] gen-tree
#let [(^open "&/") (&;Eq<Tree> number;Eq<Nat>)
- (^open "List/") (list;Eq<List> number;Eq<Nat>)]]
+ (^open "&/") &;Fold<Tree>
+ concat (function [addition partial] (format partial (%n addition)))]]
($_ seq
(test "Can compare trees for equality."
- (and (&/= leaf leaf)
- (&/= branch branch)
- (not (&/= leaf branch))
- (not (&/= leaf (&;branch branchV (List/map &;leaf (list;reverse branchC)))))))
+ (&/= sample sample))
(test "Can flatten a tree to get all the nodes as a flat tree."
- (List/= (list& branchV branchC)
- (&;flatten branch)))
+ (n.= size
+ (list;size (&;flatten sample))))
+
+ (test "Can fold trees."
+ (T/= (&/fold concat "" sample)
+ (L/fold concat "" (&;flatten sample))))
))