-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathodoc_dag2html.ml
1575 lines (1503 loc) · 46.5 KB
/
odoc_dag2html.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Maxence Guesdon, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 2001 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(** The types and functions to create a html table representing a dag. Thanks to Daniel De Rauglaudre. *)
type 'a dag = { mutable dag : 'a node array }
and 'a node =
{ mutable pare : idag list; valu : 'a; mutable chil : idag list }
and idag = int
external int_of_idag : idag -> int = "%identity"
external idag_of_int : int -> idag = "%identity"
type 'a table = { table : 'a data array array }
and 'a data = { mutable elem : 'a elem; mutable span : span_id }
and 'a elem = Elem of 'a | Ghost of ghost_id | Nothing
and span_id
and ghost_id
external span_id_of_int : int -> span_id = "%identity"
external ghost_id_of_int : int -> ghost_id = "%identity"
let new_span_id = let i = ref 0 in fun () -> incr i; span_id_of_int !i
let new_ghost_id = let i = ref 0 in fun () -> incr i; ghost_id_of_int !i
(** creating the html table structure *)
type align = LeftA | CenterA | RightA
type table_data = TDstring of string | TDhr of align
let html_table_struct indi_txt phony d t =
let phony =
function
Elem e -> phony d.dag.(int_of_idag e)
| Ghost _ -> false
| Nothing -> true
in
let elem_txt =
function
Elem e -> indi_txt d.dag.(int_of_idag e)
| Ghost _ -> "|"
| Nothing -> " "
in
let bar_txt =
function
Elem _ | Ghost _ -> "|"
| Nothing -> " "
in
let all_empty i =
let rec loop j =
if j = Array.length t.table.(i) then true
else
match t.table.(i).(j).elem with
Nothing -> loop (j + 1)
| e -> if phony e then loop (j + 1) else false
in
loop 0
in
let line_elem_txt i =
let les =
let rec loop les j =
if j = Array.length t.table.(i) then les
else
let x = t.table.(i).(j) in
let next_j =
let rec loop j =
if j = Array.length t.table.(i) then j
else if t.table.(i).(j) = x then loop (j + 1)
else j
in
loop (j + 1)
in
let colspan = 3 * (next_j - j) in
let les = (1, LeftA, TDstring " ") :: les in
let les =
let s =
if t.table.(i).(j).elem = Nothing then " "
else elem_txt t.table.(i).(j).elem
in
(colspan - 2, CenterA, TDstring s) :: les
in
let les = (1, LeftA, TDstring " ") :: les in loop les next_j
in
loop [] 0
in
Array.of_list (List.rev les)
in
let vbars_txt k i =
let les =
let rec loop les j =
if j = Array.length t.table.(i) then les
else
let x = t.table.(i).(j) in
let next_j =
let rec loop j =
if j = Array.length t.table.(i) then j
else if t.table.(i).(j) = x then loop (j + 1)
else j
in
loop (j + 1)
in
let colspan = 3 * (next_j - j) in
let les = (1, LeftA, TDstring " ") :: les in
let les =
let s =
if k > 0 && t.table.(k - 1).(j).elem = Nothing ||
t.table.(k).(j).elem = Nothing then
" "
else if phony t.table.(i).(j).elem then " "
else bar_txt t.table.(i).(j).elem
in
(colspan - 2, CenterA, TDstring s) :: les
in
let les = (1, LeftA, TDstring " ") :: les in loop les next_j
in
loop [] 0
in
Array.of_list (List.rev les)
in
let alone_bar_txt i =
let les =
let rec loop les j =
if j = Array.length t.table.(i) then les
else
let next_j =
let x = t.table.(i).(j).span in
let rec loop j =
if j = Array.length t.table.(i) then j
else if t.table.(i).(j).span = x then loop (j + 1)
else j
in
loop (j + 1)
in
let colspan = 3 * (next_j - j) - 2 in
let les = (1, LeftA, TDstring " ") :: les in
let les =
if t.table.(i).(j).elem = Nothing ||
t.table.(i + 1).(j).elem = Nothing then
(colspan, LeftA, TDstring " ") :: les
else
let s =
let all_ph =
let rec loop j =
if j = next_j then true
else if phony t.table.(i + 1).(j).elem then loop (j + 1)
else false
in
loop j
in
if all_ph then " " else "|"
in
(colspan, CenterA, TDstring s) :: les
in
let les = (1, LeftA, TDstring " ") :: les in loop les next_j
in
loop [] 0
in
Array.of_list (List.rev les)
in
let exist_several_branches i k =
let rec loop j =
if j = Array.length t.table.(i) then false
else
let x = t.table.(i).(j).span in
let e = t.table.(k).(j).elem in
let rec loop1 j =
if j = Array.length t.table.(i) then false
else if t.table.(i).(j).elem = Nothing then loop j
else if t.table.(i).(j).span <> x then loop j
else if t.table.(k).(j).elem <> e then true
else loop1 (j + 1)
in
loop1 (j + 1)
in
loop 0
in
let hbars_txt i k =
let les =
let rec loop les j =
if j = Array.length t.table.(i) then les
else
let next_j =
let e = t.table.(i).(j).elem in
let x = t.table.(i).(j).span in
let rec loop j =
if j = Array.length t.table.(i) then j
else if e = Nothing && t.table.(i).(j).elem = Nothing then
loop (j + 1)
else if t.table.(i).(j).span = x then loop (j + 1)
else j
in
loop (j + 1)
in
let rec loop1 les l =
if l = next_j then loop les next_j
else
let next_l =
let y = t.table.(k).(l) in
match y.elem with
Elem _ | Ghost _ ->
let rec loop l =
if l = Array.length t.table.(i) then l
else if t.table.(k).(l) = y then loop (l + 1)
else l
in
loop (l + 1)
| _ -> l + 1
in
if next_l > next_j then
begin
Printf.eprintf
"assert false i %d k %d l %d next_l %d next_j %d\n" i k l
next_l next_j;
flush stderr
end;
let next_l = Int.min next_l next_j in
let colspan = 3 * (next_l - l) - 2 in
let les =
match t.table.(i).(l).elem, t.table.(i + 1).(l).elem with
Nothing, _ | _, Nothing ->
(colspan + 2, LeftA, TDstring " ") :: les
| _ ->
let ph s =
if phony t.table.(k).(l).elem then TDstring " "
else s
in
if l = j && next_l = next_j then
let les = (1, LeftA, TDstring " ") :: les in
let s = ph (TDstring "|") in
let les = (colspan, CenterA, s) :: les in
let les = (1, LeftA, TDstring " ") :: les in les
else if l = j then
let les = (1, LeftA, TDstring " ") :: les in
let s = ph (TDhr RightA) in
let les = (colspan, RightA, s) :: les in
let s = ph (TDhr CenterA) in
let les = (1, LeftA, s) :: les in les
else if next_l = next_j then
let s = ph (TDhr CenterA) in
let les = (1, LeftA, s) :: les in
let s = ph (TDhr LeftA) in
let les = (colspan, LeftA, s) :: les in
let les = (1, LeftA, TDstring " ") :: les in les
else
let s = ph (TDhr CenterA) in
(colspan + 2, LeftA, s) :: les
in
loop1 les next_l
in
loop1 les j
in
loop [] 0
in
Array.of_list (List.rev les)
in
let hts =
let rec loop hts i =
if i = Array.length t.table then hts
else if i = Array.length t.table - 1 && all_empty i then hts
else
let hts = line_elem_txt i :: hts in
let hts =
if i < Array.length t.table - 1 then
let hts = vbars_txt (i + 1) i :: hts in
let hts =
if exist_several_branches i i then
alone_bar_txt i :: hbars_txt i i :: hts
else hts
in
let hts =
if exist_several_branches i (i + 1) &&
(i < Array.length t.table - 2 ||
not (all_empty (i + 1))) then
vbars_txt (i + 1) (i + 1) :: hbars_txt i (i + 1) :: hts
else hts
in
hts
else hts
in
loop hts (i + 1)
in
loop [] 0
in
Array.of_list (List.rev hts)
(** transforming dag into table *)
let ancestors d =
let rec loop i =
if i = Array.length d.dag then []
else
let n = d.dag.(i) in
if n.pare = [] then idag_of_int i :: loop (i + 1) else loop (i + 1)
in
loop 0
let get_children d parents =
(* XXXX merge_children used to be declared as a recursive function,
but it was not. I've no idea if it is a bug or not. One should
either fix it (if this is a bug), or simplify the code otherwise. *)
let merge_children children el =
List.fold_right
(fun (x, _) children ->
match x with
Elem e ->
let e = d.dag.(int_of_idag e) in
List.fold_right
(fun c children ->
if List.mem c children then children else c :: children)
e.chil children
| _ -> [])
el children
in
merge_children [] parents
let rec get_block t i j =
if j = Array.length t.table.(i) then None
else if j = Array.length t.table.(i) - 1 then
let x = t.table.(i).(j) in Some ([x.elem, 1], 1, x.span)
else
let x = t.table.(i).(j) in
let y = t.table.(i).(j + 1) in
if y.span = x.span then
match get_block t i (j + 1) with
Some ((x1, c1) :: list, mpc, span) ->
let (list, mpc) =
if x1 = x.elem then (x1, c1 + 1) :: list, Int.max mpc (c1 + 1)
else (x.elem, 1) :: (x1, c1) :: list, Int.max mpc c1
in
Some (list, mpc, span)
| _ -> assert false
else Some ([x.elem, 1], 1, x.span)
let group_by_common_children d list =
let module O =
struct
type t = idag
let compare (x:t) y = compare x y
end
in
let module S = Set.Make (O)
in
let nlcsl =
List.map
(fun id ->
let n = d.dag.(int_of_idag id) in
let cs = List.fold_right S.add n.chil S.empty in [id], cs)
list
in
let nlcsl =
let rec loop =
function
[] -> []
| (nl, cs) :: rest ->
let rec loop1 beg =
function
(nl1, cs1) :: rest1 ->
if S.is_empty (S.inter cs cs1) then
loop1 ((nl1, cs1) :: beg) rest1
else
loop ((nl @ nl1, S.union cs cs1) :: (List.rev beg @ rest1))
| [] -> (nl, cs) :: loop rest
in
loop1 [] rest
in
loop nlcsl
in
List.fold_right
(fun (nl, _) a ->
let span = new_span_id () in
List.fold_right (fun n a -> {elem = Elem n; span = span} :: a) nl a)
nlcsl []
let copy_data d = {elem = d.elem; span = d.span}
let insert_columns t nb j =
let t1 = Array.make (Array.length t.table) [| |] in
for i = 0 to Array.length t.table - 1 do
let line = t.table.(i) in
let line1 = Array.make (Array.length line + nb) line.(0) in
t1.(i) <- line1;
let rec loop k =
if k = Array.length line then ()
else
begin
if k < j then line1.(k) <- copy_data line.(k)
else if k = j then
for r = 0 to nb do line1.(k + r) <- copy_data line.(k) done
else line1.(k + nb) <- copy_data line.(k);
loop (k + 1)
end
in
loop 0
done;
{table = t1}
let rec gcd a b =
if a < b then gcd b a else if b = 0 then a else gcd b (a mod b)
let treat_new_row d t =
let i = Array.length t.table - 1 in
let rec loop t i j =
match get_block t i j with
Some (parents, max_parent_colspan, _span) ->
let children = get_children d parents in
let children =
if children = [] then [{elem = Nothing; span = new_span_id ()}]
else
List.map (fun n -> {elem = Elem n; span = new_span_id ()})
children
in
let simple_parents_colspan =
List.fold_left (fun x (_, c) -> x + c) 0 parents
in
if simple_parents_colspan mod List.length children = 0 then
let j = j + simple_parents_colspan in
let children =
let cnt = simple_parents_colspan / List.length children in
List.fold_right
(fun d list ->
let rec loop cnt list =
if cnt = 1 then d :: list
else copy_data d :: loop (cnt - 1) list
in
loop cnt list)
children []
in
let (t, children_rest) = loop t i j in t, children @ children_rest
else
let parent_colspan =
List.fold_left
(fun scm (_, c) -> let g = gcd scm c in scm / g * c)
max_parent_colspan parents
in
let (t, parents, _) =
List.fold_left
(fun (t, parents, j) (x, c) ->
let to_add = parent_colspan / c - 1 in
let t =
let rec loop cc t j =
if cc = 0 then t
else
let t = insert_columns t to_add j in
loop (cc - 1) t (j + to_add + 1)
in
loop c t j
in
t, (x, parent_colspan) :: parents, j + parent_colspan)
(t, [], j) parents
in
let parents = List.rev parents in
let parents_colspan = parent_colspan * List.length parents in
let children_colspan = List.length children in
let g = gcd parents_colspan children_colspan in
let (t, j) =
let cnt = children_colspan / g in
List.fold_left
(fun (t, j) (_, c) ->
let rec loop cc t j =
if cc = 0 then t, j
else
let t = insert_columns t (cnt - 1) j in
let j = j + cnt in loop (cc - 1) t j
in
loop c t j)
(t, j) parents
in
let children =
let cnt = parents_colspan / g in
List.fold_right
(fun d list ->
let rec loop cnt list =
if cnt = 0 then list else d :: loop (cnt - 1) list
in
loop cnt list)
children []
in
let (t, children_rest) = loop t i j in t, children @ children_rest
| None -> t, []
in
loop t i 0
let down_it t i k =
t.table.(Array.length t.table - 1).(k) <- t.table.(i).(k);
for r = i to Array.length t.table - 2 do
t.table.(r).(k) <- {elem = Ghost (new_ghost_id ()); span = new_span_id ()}
done
(* equilibrate:
in the last line, for all elem A, make fall all As, which are located at
its right side above, to its line,
A |
i.e. transform all . into |
A....... A......A
*)
let equilibrate t =
let ilast = Array.length t.table - 1 in
let last = t.table.(ilast) in
let len = Array.length last in
let rec loop j =
if j = len then ()
else
match last.(j).elem with
Elem x ->
let rec loop1 i =
if i = ilast then loop (j + 1)
else
let rec loop2 k =
if k = len then loop1 (i + 1)
else
match t.table.(i).(k).elem with
Elem y when x = y -> down_it t i k; loop 0
| _ -> loop2 (k + 1)
in
loop2 0
in
loop1 0
| _ -> loop (j + 1)
in
loop 0
(* group_elem:
transform all x y into x x
A A A A *)
let group_elem t =
for i = 0 to Array.length t.table - 2 do
for j = 1 to Array.length t.table.(0) - 1 do
match t.table.(i + 1).(j - 1).elem, t.table.(i + 1).(j).elem with
Elem x, Elem y when x = y ->
t.table.(i).(j).span <- t.table.(i).(j - 1).span
| _ -> ()
done
done
(* group_ghost:
x x x x |a |a |a |a
transform all |a |b into |a |a and all x y into x x
y z y y A A A A *)
let group_ghost t =
for i = 0 to Array.length t.table - 2 do
for j = 1 to Array.length t.table.(0) - 1 do
begin match t.table.(i + 1).(j - 1).elem, t.table.(i + 1).(j).elem with
Ghost x, Ghost _ ->
if t.table.(i).(j - 1).span = t.table.(i).(j).span then
t.table.(i + 1).(j) <-
{elem = Ghost x; span = t.table.(i + 1).(j - 1).span}
| _ -> ()
end;
match t.table.(i).(j - 1).elem, t.table.(i).(j).elem with
Ghost x, Ghost _ ->
if t.table.(i + 1).(j - 1).elem = t.table.(i + 1).(j).elem then
begin
t.table.(i).(j) <-
{elem = Ghost x; span = t.table.(i).(j - 1).span};
if i > 0 then
t.table.(i - 1).(j).span <- t.table.(i - 1).(j - 1).span
end
| _ -> ()
done
done
(* group_children:
transform all A A into A A
x y x x *)
let group_children t =
for i = 0 to Array.length t.table - 1 do
let line = t.table.(i) in
let len = Array.length line in
for j = 1 to len - 1 do
if line.(j).elem = line.(j - 1).elem && line.(j).elem <> Nothing then
line.(j).span <- line.(j - 1).span
done
done
(* group_span_by_common_children:
in the last line, transform all
A B into A B
x y x x
if A and B have common children *)
let group_span_by_common_children d t =
let module O =
struct
type t = idag
let compare (x:t) y = compare x y
end
in
let module S = Set.Make (O)
in
let i = Array.length t.table - 1 in
let line = t.table.(i) in
let rec loop j cs =
if j = Array.length line then ()
else
match line.(j).elem with
Elem id ->
let n = d.dag.(int_of_idag id) in
let curr_cs = List.fold_right S.add n.chil S.empty in
if S.is_empty (S.inter cs curr_cs) then loop (j + 1) curr_cs
else
begin
line.(j).span <- line.(j - 1).span;
loop (j + 1) (S.union cs curr_cs)
end
| _ -> loop (j + 1) S.empty
in
loop 0 S.empty
let find_same_parents t i j1 j2 j3 j4 =
let rec loop i j1 j2 j3 j4 =
if i = 0 then i, j1, j2, j3, j4
else
let x1 = t.(i - 1).(j1) in
let x2 = t.(i - 1).(j2) in
let x3 = t.(i - 1).(j3) in
let x4 = t.(i - 1).(j4) in
if x1.span = x4.span then i, j1, j2, j3, j4
else
let j1 =
let rec loop j =
if j < 0 then 0
else if t.(i - 1).(j).span = x1.span then loop (j - 1)
else j + 1
in
loop (j1 - 1)
in
let j2 =
let rec loop j =
if j >= Array.length t.(i) then j - 1
else if t.(i - 1).(j).span = x2.span then loop (j + 1)
else j - 1
in
loop (j2 + 1)
in
let j3 =
let rec loop j =
if j < 0 then 0
else if t.(i - 1).(j).span = x3.span then loop (j - 1)
else j + 1
in
loop (j3 - 1)
in
let j4 =
let rec loop j =
if j >= Array.length t.(i) then j - 1
else if t.(i - 1).(j).span = x4.span then loop (j + 1)
else j - 1
in
loop (j4 + 1)
in
loop (i - 1) j1 j2 j3 j4
in
loop i j1 j2 j3 j4
let find_linked_children t i j1 j2 j3 j4 =
let rec loop i j1 j2 j3 j4 =
if i = Array.length t - 1 then j1, j2, j3, j4
else
let x1 = t.(i).(j1) in
let x2 = t.(i).(j2) in
let x3 = t.(i).(j3) in
let x4 = t.(i).(j4) in
let j1 =
let rec loop j =
if j < 0 then 0
else if t.(i).(j).span = x1.span then loop (j - 1)
else j + 1
in
loop (j1 - 1)
in
let j2 =
let rec loop j =
if j >= Array.length t.(i) then j - 1
else if t.(i).(j).span = x2.span then loop (j + 1)
else j - 1
in
loop (j2 + 1)
in
let j3 =
let rec loop j =
if j < 0 then 0
else if t.(i).(j).span = x3.span then loop (j - 1)
else j + 1
in
loop (j3 - 1)
in
let j4 =
let rec loop j =
if j >= Array.length t.(i) then j - 1
else if t.(i).(j).span = x4.span then loop (j + 1)
else j - 1
in
loop (j4 + 1)
in
loop (i + 1) j1 j2 j3 j4
in
loop i j1 j2 j3 j4
let mirror_block t i1 i2 j1 j2 =
for i = i1 to i2 do
let line = t.(i) in
let rec loop j1 j2 =
if j1 >= j2 then ()
else
let v = line.(j1) in
line.(j1) <- line.(j2); line.(j2) <- v; loop (j1 + 1) (j2 - 1)
in
loop j1 j2
done
let exch_blocks t i1 i2 j1 j2 j3 j4 =
for i = i1 to i2 do
let line = t.(i) in
let saved = Array.copy line in
for j = j1 to j2 do line.(j4 - j2 + j) <- saved.(j) done;
for j = j3 to j4 do line.(j1 - j3 + j) <- saved.(j) done
done
let find_block_with_parents t i jj1 jj2 jj3 jj4 =
let rec loop ii jj1 jj2 jj3 jj4 =
let (nii, njj1, njj2, njj3, njj4) =
find_same_parents t i jj1 jj2 jj3 jj4
in
if nii <> ii || njj1 <> jj1 || njj2 <> jj2 || njj3 <> jj3 ||
njj4 <> jj4 then
let nii = Int.min ii nii in
let (jj1, jj2, jj3, jj4) =
find_linked_children t nii njj1 njj2 njj3 njj4
in
if njj1 <> jj1 || njj2 <> jj2 || njj3 <> jj3 || njj4 <> jj4 then
loop nii jj1 jj2 jj3 jj4
else nii, jj1, jj2, jj3, jj4
else ii, jj1, jj2, jj3, jj4
in
loop i jj1 jj2 jj3 jj4
let push_to_right t i j1 j2 =
let line = t.(i) in
let rec loop j =
if j = j2 then j - 1
else
let ini_jj1 =
match line.(j - 1).elem with
Nothing -> j - 1
| x ->
let rec same_value j =
if j < 0 then 0
else if line.(j).elem = x then same_value (j - 1)
else j + 1
in
same_value (j - 2)
in
let jj1 = ini_jj1 in
let jj2 = j - 1 in
let jj3 = j in
let jj4 =
match line.(j).elem with
Nothing -> j
| x ->
let rec same_value j =
if j >= Array.length line then j - 1
else if line.(j).elem = x then same_value (j + 1)
else j - 1
in
same_value (j + 1)
in
let (ii, jj1, jj2, jj3, jj4) =
find_block_with_parents t i jj1 jj2 jj3 jj4
in
if jj4 < j2 && jj2 < jj3 then
begin exch_blocks t ii i jj1 jj2 jj3 jj4; loop (jj4 + 1) end
else if jj4 < j2 && jj1 = ini_jj1 && jj2 <= jj4 then
begin mirror_block t ii i jj1 jj4; loop (jj4 + 1) end
else j - 1
in
loop (j1 + 1)
let push_to_left t i j1 j2 =
let line = t.(i) in
let rec loop j =
if j = j1 then j + 1
else
let jj1 =
match line.(j).elem with
Nothing -> j
| x ->
let rec same_value j =
if j < 0 then 0
else if line.(j).elem = x then same_value (j - 1)
else j + 1
in
same_value (j - 1)
in
let jj2 = j in
let jj3 = j + 1 in
let ini_jj4 =
match line.(j + 1).elem with
Nothing -> j + 1
| x ->
let rec same_value j =
if j >= Array.length line then j - 1
else if line.(j).elem = x then same_value (j + 1)
else j - 1
in
same_value (j + 2)
in
let jj4 = ini_jj4 in
let (ii, jj1, jj2, jj3, jj4) =
find_block_with_parents t i jj1 jj2 jj3 jj4
in
if jj1 > j1 && jj2 < jj3 then
begin exch_blocks t ii i jj1 jj2 jj3 jj4; loop (jj1 - 1) end
else if jj1 > j1 && jj4 = ini_jj4 && jj3 >= jj1 then
begin mirror_block t ii i jj1 jj4; loop (jj1 - 1) end
else j + 1
in
loop (j2 - 1)
let fill_gap t i j1 j2 =
let t1 =
let t1 = Array.copy t.table in
for i = 0 to Array.length t.table - 1 do
t1.(i) <- Array.copy t.table.(i);
for j = 0 to Array.length t1.(i) - 1 do
t1.(i).(j) <- copy_data t.table.(i).(j)
done
done;
t1
in
let j2 = push_to_left t1 i j1 j2 in
let j1 = push_to_right t1 i j1 j2 in
if j1 = j2 - 1 then
let line = t1.(i - 1) in
let x = line.(j1).span in
let y = line.(j2).span in
let rec loop y j =
if j >= Array.length line then ()
else if line.(j).span = y || t1.(i).(j).elem = t1.(i).(j - 1).elem then
let y = line.(j).span in
line.(j).span <- x;
if i > 0 then t1.(i - 1).(j).span <- t1.(i - 1).(j - 1).span;
loop y (j + 1)
in
loop y j2; Some ({table = t1}, true)
else None
let treat_gaps t =
let i = Array.length t.table - 1 in
let rec loop t j =
let line = t.table.(i) in
if j = Array.length line then t
else
match line.(j).elem with
Elem _ as y ->
if y = line.(j - 1).elem then loop t (j + 1)
else
let rec loop1 t j1 =
if j1 < 0 then loop t (j + 1)
else if y = line.(j1).elem then
match fill_gap t i j1 j with
Some (t, ok) -> if ok then loop t 2 else loop t (j + 1)
| None -> loop t (j + 1)
else loop1 t (j1 - 1)
in
loop1 t (j - 2)
| _ -> loop t (j + 1)
in
if Array.length t.table.(i) = 1 then t else loop t 2
let group_span_last_row t =
let row = t.table.(Array.length t.table - 1) in
let rec loop i =
if i >= Array.length row then ()
else
begin
begin match row.(i).elem with
Elem _ | Ghost _ as x ->
if x = row.(i - 1).elem then row.(i).span <- row.(i - 1).span
| _ -> ()
end;
loop (i + 1)
end
in
loop 1
let has_phony_children phony d t =
let line = t.table.(Array.length t.table - 1) in
let rec loop j =
if j = Array.length line then false
else
match line.(j).elem with
Elem x -> if phony d.dag.(int_of_idag x) then true else loop (j + 1)
| _ -> loop (j + 1)
in
loop 0
let tablify phony no_optim no_group d =
let a = ancestors d in
let r = group_by_common_children d a in
let t = {table = [| Array.of_list r |]} in
let rec loop t =
let (t, new_row) = treat_new_row d t in
if List.for_all (fun x -> x.elem = Nothing) new_row then t
else
let t = {table = Array.append t.table [| Array.of_list new_row |]} in
let t =
if no_group && not (has_phony_children phony d t) then t
else begin
if no_optim then () else equilibrate t;
group_elem t;
group_ghost t;
group_children t;
group_span_by_common_children d t;
let t = if no_optim then t else treat_gaps t in
group_span_last_row t;
t
end
in
loop t
in
loop t
let fall t =
for i = 1 to Array.length t.table - 1 do
let line = t.table.(i) in
let rec loop j =
if j = Array.length line then ()
else
match line.(j).elem with
Ghost x ->
let j2 =
let rec loop j =
if j = Array.length line then j - 1
else
match line.(j).elem with
Ghost y when y = x -> loop (j + 1)
| _ -> j - 1
in
loop (j + 1)
in
let i1 =
let rec loop i =
if i < 0 then i + 1
else
let line = t.table.(i) in
if (j = 0 || line.(j - 1).span <> line.(j).span) &&
(j2 = Array.length line - 1 ||
line.(j2 + 1).span <> line.(j2).span) then
loop (i - 1)
else i + 1
in
loop (i - 1)
in
let i1 =
if i1 = i then i1
else if i1 = 0 then i1
else if t.table.(i1).(j).elem = Nothing then i1
else i
in
if i1 < i then
begin
for k = i downto i1 + 1 do
for j = j to j2 do
t.table.(k).(j).elem <- t.table.(k - 1).(j).elem;
if k < i then
t.table.(k).(j).span <- t.table.(k - 1).(j).span
done
done;
for l = j to j2 do
if i1 = 0 || t.table.(i1 - 1).(l).elem = Nothing then
t.table.(i1).(l).elem <- Nothing
else
t.table.(i1).(l) <-
if l = j ||
t.table.(i1 - 1).(l - 1).span <>
t.table.(i1 - 1).(l).span then
{elem = Ghost (new_ghost_id ());
span = new_span_id ()}
else copy_data t.table.(i1).(l - 1)
done
end;
loop (j2 + 1)