Source file zipper.ml
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
open Core
open Phylogenetic_tree
type branch = float * Phylogenetic_tree.t
and metadata = {routing:routing_table; me:int}
and t =
| ZipNode of {b0:branch; b1:branch; b2:branch; meta:metadata}
| ZipBranch of {b0:branch; b1:branch; meta:metadata}
| ZipLeaf of {index:Sigs.index; b0:branch; meta:metadata}
and routing_move =
| RoutingStay
| RoutingLeft of int
| RoutingRight of int
| RoutingNeighbour of direction
and routing_table = (int * routing_move) list
and direction = Dir0 | Dir1 | Dir2
type location_type = LocLeaf | LocBranch | LocNode
type oriented_zipper = {dir:direction; zipper:t}
let string_of_dir = function Dir0 -> "Dir0" | Dir1 -> "Dir1" | Dir2 -> "Dir2"
let dir_of_string = function "Dir0" -> Dir0 | "Dir1" -> Dir1 | "Dir2" -> Dir2 | _ -> failwith "Unexpected direction name."
let location = function ZipNode _ -> LocNode | ZipLeaf _ -> LocLeaf | ZipBranch _ -> LocBranch
let left z = match location z.zipper, z.dir with
| LocNode, Dir0 -> Dir1
| LocBranch, _ | LocNode, Dir1 | LocNode, Dir2 -> Dir0
| LocLeaf, _ -> failwith "Zipper already at leaf!"
let right z = match location z.zipper, z.dir with
| LocBranch, _ | LocNode, Dir2 -> Dir1
| LocNode, Dir0 | LocNode, Dir1 -> Dir2
| LocLeaf, _ -> failwith "Zipper already at leaf!"
let routing_set (t:routing_table) ~index:i ~move:m = List.Assoc.add ~equal:Int.( = ) t i m
let routing_get (t:routing_table) ~index:i = List.Assoc.find_exn ~equal:Int.( = ) t i
let build_leaf ?(old_routing=[]) ?(me= -1) index (l,t0) =
let routing =
routing_set ~index:(get_routing_no t0) ~move:(RoutingNeighbour Dir0) old_routing
|> routing_set ~index:me ~move:RoutingStay
in ZipLeaf {index; b0=(l,t0); meta={routing; me}}
let build_branch ?(old_routing=[]) (l0,t0) (l1,t1) =
let routing =
routing_set ~index:(get_routing_no t0) ~move:(RoutingNeighbour Dir0) old_routing
|> routing_set ~index:(get_routing_no t1) ~move:(RoutingNeighbour Dir1)
|> routing_set ~index:0 ~move:RoutingStay
in ZipBranch {b0=(l0,t0); b1=(l1,t1); meta={routing; me=0}}
let build_node ?(old_routing=[]) ?(me= -1) (l0,t0) (l1,t1) (l2,t2) =
let routing =
routing_set ~index:(get_routing_no t0) ~move:(RoutingNeighbour Dir0) old_routing
|> routing_set ~index:(get_routing_no t1) ~move:(RoutingNeighbour Dir1)
|> routing_set ~index:(get_routing_no t2) ~move:(RoutingNeighbour Dir2)
|> routing_set ~index:me ~move:RoutingStay
in ZipNode {b0=(l0,t0); b1=(l1,t1); b2=(l2,t2); meta={routing; me}}
let get_meta = function
| ZipLeaf {meta; _} | ZipBranch {meta; _} | ZipNode {meta; _} -> meta
let slide z d l = match d, z with
| Dir0, ZipLeaf {index=i; b0=l2, t; meta={routing; me}} when Float.(l<l2)
-> build_branch ~old_routing:routing (l2-.l, t) (l, Phylogenetic_tree.build_leaf ~routing_no:me i)
| Dir0, ZipBranch {b0=l1,t1; b1=l2,t2; meta={routing; _}} when Float.(l<l1)
-> build_branch ~old_routing:routing (l1-.l,t1) (l2+.l,t2)
| Dir1, ZipBranch {b0=l1,t1; b1=l2,t2; meta={routing; _}} when Float.(l<l2)
-> build_branch ~old_routing:routing (l1+.l,t1) (l2-.l,t2)
| (Dir0, ZipNode {b0=lf,tf; b1=bb1; b2=bb2; meta={routing; me}} |
Dir1, ZipNode {b1=lf,tf; b0=bb1; b2=bb2; meta={routing; me}} |
Dir2, ZipNode {b2=lf,tf; b0=bb1; b1=bb2; meta={routing; me}}) when Float.(l<lf)
-> build_branch ~old_routing:routing (lf-.l,tf) (l,Phylogenetic_tree.build_node ~routing_no:me bb1 bb2)
| Dir1, ZipLeaf _ | Dir2, ZipLeaf _ | Dir2, ZipBranch _
-> failwith "Incorrect direction/zipper type combination (eg, move Dir1 on a leaf)."
| _ -> failwith "Cannot slide: length too long."
let move z i = match i, z with
| Dir0, ZipLeaf {index=i; b0=l,Node {left=b0; right=b1; meta={routing_no; _}}; meta={routing; me}}
-> build_node ~old_routing:routing ~me:routing_no b0 b1 (l,Phylogenetic_tree.build_leaf ~routing_no:me i)
| Dir0, ZipLeaf {index=i; b0=l,Leaf {index=j; meta={routing_no; _}}; meta={routing; me}}
-> build_leaf ~old_routing:routing ~me:routing_no j (l, Phylogenetic_tree.build_leaf ~routing_no:me i)
| Dir0, ZipBranch {b0=l0, Node {left=x; right=y; meta={routing_no; _}}; b1=l1, z; meta={routing; _}} |
Dir1, ZipBranch {b1=l0, Node {left=x; right=y; meta={routing_no; _}}; b0=l1, z; meta={routing; _}}
-> build_node ~old_routing:routing ~me:routing_no x y (l0+.l1,z)
| Dir0, ZipBranch {b0=l0, Leaf {index=i; meta={routing_no; _}}; b1=l1, z; meta={routing; _}} |
Dir1, ZipBranch {b1=l0, Leaf {index=i; meta={routing_no; _}}; b0=l1, z; meta={routing; _}}
-> build_leaf ~old_routing:routing ~me:routing_no i (l1+.l0, z)
| Dir0, ZipNode {b0=l,Node {left=x; right=y; meta={routing_no; _}}; b1=(la,ta); b2=(lb,tb); meta={routing; me}} |
Dir1, ZipNode {b1=l,Node {left=x; right=y; meta={routing_no; _}}; b0=(la,ta); b2=(lb,tb); meta={routing; me}} |
Dir2, ZipNode {b2=l,Node {left=x; right=y; meta={routing_no; _}}; b0=(la,ta); b1=(lb,tb); meta={routing; me}}
-> let new_routing =
routing_set ~index:(get_routing_no ta) ~move:(RoutingLeft me) routing
|> routing_set ~index:(get_routing_no tb) ~move:(RoutingRight me)
in build_node ~old_routing:new_routing ~me:routing_no x y (l, Phylogenetic_tree.build_node ~routing_no:me (la,ta) (lb,tb))
| Dir0, ZipNode {b0=l,Leaf {index=i; meta={routing_no; _}}; b1=(la,ta); b2=(lb,tb); meta={routing; me}} |
Dir1, ZipNode {b1=l,Leaf {index=i; meta={routing_no; _}}; b0=(la,ta); b2=(lb,tb); meta={routing; me}} |
Dir2, ZipNode {b2=l,Leaf {index=i; meta={routing_no; _}}; b0=(la,ta); b1=(lb,tb); meta={routing; me}}
-> let new_routing =
routing_set ~index:(get_routing_no ta) ~move:(RoutingLeft me) routing
|> routing_set ~index:(get_routing_no tb) ~move:(RoutingRight me)
in build_leaf ~old_routing:new_routing ~me:routing_no i (l, Phylogenetic_tree.build_node ~routing_no:me (la,ta) (lb,tb))
| Dir1, ZipLeaf _ | Dir2, ZipLeaf _ | Dir2, ZipBranch _
-> failwith "Incorrect direction/zipper type combination (eg, move Dir1 on a leaf)."
let move_left z =
{dir=Dir2; zipper=move z.zipper (left z)}
let move_right z =
{dir=Dir2; zipper=move z.zipper (right z)}
let orient (z:t) d = {dir=d; zipper=z}
let unorient {zipper; dir=_} = zipper
let rec init_routing =
let rec compute_routing_tree table m =
let routing_add (t, i) m = routing_set ~index:i ~move:m t, i+1 in
function
| Node {left=fl,l; right=fr,r; meta={id; _}} ->
let (_,me) = table in
let table2 = routing_add table m in
let table3, new_l = compute_routing_tree table2 (RoutingLeft me) l in
let table4, new_r = compute_routing_tree table3 (RoutingRight me) r in
table4, Node {left=fl,new_l; right=fr,new_r; meta={id; routing_no=me}}
| Leaf {index; meta={id; _}} ->
let (_,me) = table in
routing_add table m,
Leaf {index; meta={id; routing_no=me}}
in
function
| ZipLeaf {index; b0=l0,t0; _} ->
let (table,_), new_tree = compute_routing_tree ([],2) (RoutingNeighbour Dir0) t0 in
ZipLeaf {index; b0=l0,new_tree; meta={routing=(routing_set table ~index:1 ~move:RoutingStay); me=1}}
| ZipBranch _ as z-> init_routing (move z Dir0)
| ZipNode {b0=l0,t0; b1=l1,t1; b2=l2,t2; _} ->
let table, new_t0 = compute_routing_tree ([],2) (RoutingNeighbour Dir0) t0 in
let table2, new_t1 = compute_routing_tree table (RoutingNeighbour Dir1) t1 in
let (table3,_), new_t2 = compute_routing_tree table2 (RoutingNeighbour Dir2) t2 in
ZipNode {b0=l0,new_t0; b1=l1,new_t1; b2=l2,new_t2; meta={routing=(routing_set table3 ~index:1 ~move:RoutingStay); me=1}}
let get_route table i =
let rec aux table i =
match routing_get table ~index:i with
| (RoutingLeft j | RoutingRight j) as m -> m::(aux table j)
| RoutingNeighbour _ as m -> [m]
| RoutingStay as m -> [m]
in List.rev (aux table i)
let goto z i =
let rec follow z = function
| (RoutingLeft _)::route -> follow (move_left z) route
| (RoutingRight _)::route -> follow (move_right z) route
| [] -> z
| (RoutingNeighbour _ | RoutingStay)::_ -> failwith "Encountered unexpected move in route."
in
match get_route ((get_meta z).routing) i with
| (RoutingNeighbour d)::route -> (follow (orient (move z d) Dir2) route).zipper
| [RoutingStay] -> z
| r -> failwith (sprintf "Empty or malformed route (len=%d)." (List.length r))
let get_length z d = match d, z with
| Dir0, ZipLeaf {b0=l,_; _} |
Dir0, ZipBranch {b0=l,_;_} |
Dir1, ZipBranch {b1=l,_;_} |
Dir0, ZipNode {b0=l,_;_} |
Dir1, ZipNode {b1=l,_;_} |
Dir2, ZipNode {b2=l,_;_} -> l
| Dir1, ZipLeaf _ | Dir2, ZipLeaf _ | Dir2, ZipBranch _ ->
failwith "Incorrect direction/zipper type combination (eg, move Dir1 on a leaf)."
let length_left z =
left z |> get_length z.zipper
let length_right z =
right z |> get_length z.zipper
let get_index = function
| ZipLeaf {index; _} -> index
| ZipBranch _ | ZipNode _ -> failwith "Zipper is not a leaf. Cannot get index."
let random_node z =
(get_meta z).routing |> List.length |> fun x -> (Random.int (x-1))+1 |> goto z
let of_tree = function
| Node {left=b0; right=b1; _} -> build_branch b0 b1
| Leaf _ -> failwith "Zipper cannot be a lone leaf."
let of_tree_dir t =
orient (of_tree t) Dir0
let rec to_tree = function
| (ZipNode {b0=l,_; _} |
ZipLeaf {b0=l,_; _}) as z -> slide z Dir0 (l/.2.) |> to_tree
| ZipBranch {b0; b1; _} -> Phylogenetic_tree.build_node b0 b1
let get_branch z d = match d, z with
| Dir0, ZipLeaf {b0=x;_} |
Dir0, ZipBranch {b0=x;_} |
Dir1, ZipBranch {b1=x;_} |
Dir0, ZipNode {b0=x;_} |
Dir1, ZipNode {b1=x;_} |
Dir2, ZipNode {b2=x;_} -> x
| Dir1, ZipLeaf _ | Dir2, ZipLeaf _ | Dir2, ZipBranch _ ->
failwith "Incorrect direction/zipper type combination (eg, move Dir1 on a leaf)."
let get_tree z d = match get_branch z d with _, t -> t
let equal z1 z2 = match z1, z2 with
| ZipLeaf {index=i; b0=b,t; _}, ZipLeaf {index=i2; b0=b2,t2; _} ->
Phylogenetic_tree.equal t t2 && Float.(b = b2) && String.(i = i2)
| ZipBranch {b0=b00,t00; b1=b01,t01; _}, ZipBranch {b0=b10,t10; b1=b11,t11; _} ->
Phylogenetic_tree.(
equal t00 t10 && Float.(b00 = b10) &&
equal t01 t11 && Float.(b01 = b11)
)
| ZipNode {b0=b00,t00; b1=b01,t01; b2=b02,t02; _}, ZipNode {b0=b10,t10; b1=b11,t11; b2=b12,t12; _} ->
Phylogenetic_tree.(
equal t00 t10 && Float.(b00 = b10) &&
equal t01 t11 && Float.(b01 = b11) &&
equal t02 t12 && Float.(b02 = b12)
)
| ZipLeaf _, ZipBranch _ | ZipLeaf _, ZipNode _ |
ZipBranch _, ZipLeaf _ | ZipBranch _, ZipNode _ |
ZipNode _, ZipLeaf _ | ZipNode _, ZipBranch _ -> false
let to_pretty_string =
let indent sep str =
String.rstrip str |>
String.concat_map ~f:(fun x -> if Char.equal x '\n' then sprintf "\n%s" sep else String.init 1 ~f:(fun _ ->x))
|> sprintf "%s%s\n" sep in
let string_of_branch z d =
match get_branch z d with l,t ->
Phylogenetic_tree.pp_fancy Format.str_formatter t ;
Format.flush_str_formatter () |> indent (Utils.fancy_sprintf "| ") |>
Utils.fancy_sprintf "<$green$Branch$$> $magenta$%s$$ length=$cyan$%.3f$$ [$yellow$%d$$]\n|\n%s|"
(string_of_dir d) l (Phylogenetic_tree.get_meta t).id
in function
| ZipLeaf {index; meta={me;_}; _} as z ->
Utils.fancy_sprintf "\n<$green$ZipLeaf$$> $blue$%s$$, routing_no=%d\n%s" index me
(string_of_branch z Dir0 |> indent " ")
| ZipBranch {meta={me; _}; _} as z ->
Utils.fancy_sprintf "\n<$green$ZipBranch$$> routing_no=%d\n%s%s" me
(string_of_branch z Dir0 |> indent " ")
(string_of_branch z Dir1 |> indent " ")
| ZipNode {meta={me; _}; _} as z ->
Utils.fancy_sprintf "\n<$green$ZipNode$$> routing_no=%d\n%s%s%s" me
(string_of_branch z Dir0 |> indent " ")
(string_of_branch z Dir1 |> indent " ")
(string_of_branch z Dir2 |> indent " ")
let pp, pp_fancy, print, print_fancy = Utils.all_printers to_pretty_string