-
Notifications
You must be signed in to change notification settings - Fork 128
Closed
Description
Treemap : [15][32]
Treemap = tail T
where
T = [undefined] # branches # leaves
branches = map (\[x, y] -> x + y) (tail (split T))
leaves = [ 0 .. 7 ]
Treeparmap : [15][32]
Treeparmap = tail T
where
T = [undefined] # branches # leaves
branches = parmap (\[x, y] -> x + y) (tail (split T))
leaves = [ 0 .. 7 ]
Test> Treemap
[28, 6, 22, 1, 5, 9, 13, 0, 1, 2, 3, 4, 5, 6, 7]
Test> Treeparmap
<<loop>>Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels