github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

spl / splonderzoek

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 2
    • 0
  • Source
  • Commits
  • Network (0)
  • Graphs
  • Tree: e678f86

click here to add a description

click here to add a homepage

  • Branches (1)
    • master
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Code for blog entries — Read more

  cancel

http://splonderzoek.blogspot.com/

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Fix typo and line overflowing on Github 
Sean Leather (author)
Tue Oct 06 02:09:04 -0700 2009
commit  e678f860933e59d55008329f9e97090e0998f1b0
tree    639036f631292c27df074ce2220ea9737a497360
parent  96876fce08652c318251b4306da7932d0320c58b
splonderzoek / Accumulations.hs Accumulations.hs
100644 241 lines (176 sloc) 7.766 kb
edit raw blame history
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
-- This is Haskell code derived from the Bird-Meertens formulism used by Jeremy
-- Gibbons in "Upwards and downwards accumulations on trees" (1993).
--
-- See http://www.citeulike.org/user/spl/article/5486052 for the article
-- reference and links.
 
module Accumulations where
 
import Prelude hiding (last)
import Data.Char (ord)
import Data.Monoid
 
--------------------------------------------------------------------------------
-- 2. Notation
--------------------------------------------------------------------------------
 
-- product (unused in my code)
(.||) :: (a -> c) -> (b -> d) -> (a, b) -> (c, d)
(.||) f g (a, b) = (f a, g b)
 
infixr 9 .||
 
-- sum (unused in my code)
(.|) :: (a -> c) -> (b -> d) -> Either a b -> Either c d
(.|) f _ (Left a) = Left (f a)
(.|) _ g (Right b) = Right (g b)
 
-- ↟
fork :: (a -> b) -> (a -> c) -> a -> (b, c)
fork f g a = (f a, g a)
 
-- ↡ (unused in my code, because it's replaced by constructor alternatives and
-- function arguments)
join :: (b -> a) -> (c -> a) -> Either b c -> a
join h _ (Left a) = h a
join _ k (Right b) = k b
 
data Tree a
  = Leaf a -- △
  | Branch (Tree a) a (Tree a) -- ┴
  deriving (Eq, Show)
 
-- postfix * for Tree
instance Functor Tree where
  fmap f (Leaf a) = Leaf (f a)
  fmap f (Branch x a y) = Branch (fmap f x) (f a) (fmap f y)
 
-- Examples
five = Branch (Leaf 'b') 'a' (Branch (Leaf 'd') 'c' (Leaf 'e'))
five' = fmap ord five
 
-- Catamorphism for Tree
cataTree :: (a -> b) -> (b -> a -> b -> b) -> Tree a -> b
cataTree f _ (Leaf a) = f a
cataTree f g (Branch x a y) = g (cataTree f g x) a (cataTree f g y)
 
leaves = cataTree (const 1) (\u _ v -> u + v)
branches = cataTree (const 0) (\u _ v -> u + 1 + v)
 
--------------------------------------------------------------------------------
-- 3. Upwards accumulations
--------------------------------------------------------------------------------
 
subtrees :: Tree a -> Tree (Tree a)
subtrees (Leaf a) = Leaf (Leaf a)
subtrees (Branch x a y) = Branch (subtrees x) (Branch x a y) (subtrees y)
 
root :: Tree a -> a
root (Leaf a) = a
root (Branch _ a _) = a
 
prop_subtrees1 x = root (subtrees x) == x
 
subtrees' :: Tree a -> Tree (Tree a)
subtrees' = cataTree (Leaf . Leaf) (\u a v -> Branch u (Branch (root u) a (root v)) v)
 
prop_subtrees2 x = subtrees x == subtrees' x
 
upwards_pass :: (Tree a -> b) -> Tree a -> Tree b
upwards_pass g = fmap g . subtrees
 
-- ⇑
upwards_accum :: (a -> b) -> (b -> a -> b -> b) -> Tree a -> Tree b
upwards_accum f g = fmap (cataTree f g) . subtrees
 
sizes = fmap size . subtrees
 
size = cataTree (const 1) (\u _ v -> u + 1 + v)
 
sizes' = upwards_accum (const 1) (\u _ v -> u + 1 + v)
 
prop_sizes x = sizes x == sizes' x
 
--------------------------------------------------------------------------------
-- 4. Downwards accumulations
--------------------------------------------------------------------------------
 
data Thread a
  = TLeaf a -- ♢
  | TLeft (Thread a) a -- ↙, left snoc
  | TRight (Thread a) a -- ↘, right snoc
  deriving (Eq, Show)
 
-- Catamorphism for Thread
cataThread :: (a -> b) -> (b -> a -> b) -> (b -> a -> b) -> Thread a -> b
cataThread f _ _ (TLeaf a) = f a
cataThread f g h (TLeft x a) = g (cataThread f g h x) a
cataThread f g h (TRight y a) = h (cataThread f g h y) a
 
paths :: Tree a -> Tree (Thread a)
paths (Leaf a) = Leaf (TLeaf a)
paths (Branch x a y) = Branch (fmap (left a) (paths x)) (TLeaf a) (fmap (right a) (paths y))
  where
    -- cons
    left b = cataThread (TLeft (TLeaf b)) TLeft TRight
    right b = cataThread (TRight (TLeaf b)) TLeft TRight
 
downwards_pass :: (Thread a -> b) -> Tree a -> Tree b
downwards_pass g = fmap g . paths
 
-- ⇓
downwards_accum :: (a -> b) -> (b -> a -> b) -> (b -> a -> b) -> Tree a -> Tree b
downwards_accum f g h = fmap (cataThread f g h) . paths
 
downwards_pass' :: (a -> b) -> (a -> b -> b) -> (a -> b -> b) -> Tree a -> Tree b
downwards_pass' f _ _ (Leaf a) = Leaf (f a)
downwards_pass' f g h (Branch x a y) =
  Branch (fmap (g a) (downwards_pass' f g h x)) (f a) (fmap (h a) (downwards_pass' f g h y))
 
data Daerht a
  = DLeaf a -- ♢
  | DRight a (Daerht a) -- ↗, right cons
  | DLeft a (Daerht a) -- ↖, left cons
 
-- Catamorphism for Daerht
cataDaerht :: (a -> b) -> (a -> b -> b) -> (a -> b -> b) -> Daerht a -> b
cataDaerht f _ _ (DLeaf a) = f a
cataDaerht f g h (DRight a y) = g a (cataDaerht f g h y)
cataDaerht f g h (DLeft a x) = h a (cataDaerht f g h x)
 
td :: Thread a -> Daerht a
td = cataThread DLeaf right left
  where
    -- snoc
    right p a = cataDaerht (\b -> DRight b (DLeaf a)) DRight DLeft p
    left p a = cataDaerht (\b -> DLeft b (DLeaf a)) DRight DLeft p
 
downwards_pass'' :: (a -> b) -> (a -> b -> b) -> (a -> b -> b) -> Tree a -> Tree b
downwards_pass'' f g h = fmap (cataDaerht f g h) . fmap td . paths
 
depths :: Tree a -> Tree Int
depths (Leaf a) = Leaf 1
depths (Branch x _ y) = Branch (fmap (+1) (depths x)) 1 (fmap (+1) (depths y))
 
depths' :: Tree a -> Tree Int
depths' = downwards_accum (const 1) (\u _ -> u + 1) (\v _ -> v + 1)
 
prop_depths x = depths x == depths' x
 
--------------------------------------------------------------------------------
-- 5. Parallel prefix
--------------------------------------------------------------------------------
 
-- Non-empty list
data List a
  = One a -- ▢
  | Append (List a) (List a) -- ++
 
-- postfix * for List
instance Functor List where
  fmap f (One a) = One (f a)
  fmap f (Append x y) = Append (fmap f x) (fmap f y)
 
-- Catamorphism for List
cataList :: (a -> b) -> (b -> b -> b) -> List a -> b
cataList f _ (One a) = f a
cataList f g (Append x y) = g (cataList f g x) (cataList f g y)
 
last = cataList id (\u v -> v)
 
inits = cataList (One . One) (\u v -> Append u (fmap (Append (last u)) v))
 
ps :: (a -> b) -> (b -> b -> b) -> List a -> List b
ps f g = fmap (cataList f g) . inits
 
fringe :: Tree a -> List a
fringe = cataTree One (\u _ v -> Append u v)
 
-- The oft-used 's' mentioned inline in the text on page 133
s f g = cataList f g . fringe
 
tps1 :: (a -> b) -> (b -> b -> b) -> Tree a -> Tree b
tps1 f _ (Leaf a) = Leaf (f a)
tps1 f g (Branch x a y) = Branch (tps1 f g x) (s f g x) (fmap (g (s f g x)) (tps1 f g y))
 
prop_tps1 f g x = fringe (tps1 f g x) == ps f g (fringe x)
 
up1 :: (a -> b) -> (b -> b -> b) -> Tree a -> Tree b
up1 f _ (Leaf a) = Leaf (f a)
up1 f g (Branch x a y) = Branch (up1 f g x) (s f g x) (up1 f g y)
 
down1 :: (b -> b -> b) -> Tree b -> Tree b
down1 _ (Leaf b) = Leaf b
down1 g (Branch x b y) = Branch (down1 g x) b (fmap (g b) (down1 g y))
 
prop_tps2 f g x = tps1 f g x == down1 g (up1 f g x)
 
sl :: (a -> b) -> (b -> b -> b) -> Tree a -> b
sl f _ (Leaf a) = f a
sl f g (Branch x _ _) = s f g x
 
up2 :: (a -> b) -> (b -> b -> b) -> Tree a -> Tree b
up2 f g = fmap (sl f g) . subtrees
 
s_fork_sl1 :: (a -> b) -> (b -> b -> b) -> Tree a -> (b, b)
s_fork_sl1 f g = fork (s f g) (sl f g)
 
-- The unnamed right component of the catamorphism for 's ↟ sl'. It doesn't seem
-- to quite match what Gibbons wrote, so I'm not fully convinced it's correct.
pairs :: (b -> b -> b) -> (b, b) -> a -> (b, b) -> (b, b)
pairs g (x, _) _ (y, _) = (g x y, x)
 
s_fork_sl2 :: (a -> b) -> (b -> b -> b) -> Tree a -> (b, b)
s_fork_sl2 f g = cataTree (fork f f) (pairs g)
 
up3 :: (a -> b) -> (b -> b -> b) -> Tree a -> Tree b
up3 f g = fmap snd . upwards_accum (fork f f) (pairs g)
 
down2 :: (Monoid b) => (b -> b -> b) -> Tree b -> Tree b
down2 g = fmap snd . downwards_accum (fork (const mempty) id) plus cros
  where
    plus (b, c) d = (b, g b d)
    cros (b, c) d = (c, g c d)
 
tps2 :: (Monoid b) => (a -> b) -> (b -> b -> b) -> Tree a -> Tree b
tps2 f g = down2 g . up3 f g
 
prop_tps3 f g x = tps1 f g x == tps2 f g x
 
 
 
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server