Source file expand.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
open UtilsLib
open Lambda
module Log = Xlog.Make (struct
let name = "Expand"
end)
(** The {!Address} module implements addresses as used in Makoto's
paper *)
module Address =
struct
type elt = Zero | One
let make_add =
List.map
(function
| 0 -> Zero
| 1 -> One
| i -> raise (Invalid_argument (Printf.sprintf "%d is not part of a valid binary tree domain." i )))
let elt_cmp e1 e2 =
match e1, e2 with
| Zero, Zero -> 0
| Zero, One -> -1
| One, Zero -> 1
| One, One -> 0
(** [elt_pp fmt elt] prettyp prints the element [elt] on the
formatter [fmt] *)
let elt_pp fmt = function
| Zero -> Format.pp_print_int fmt 0
| One -> Format.pp_print_int fmt 1
(** [t] is the type of addresses *)
type t = elt list
(** This exception is used on some operation involving an address
[a] and some address [u] where it is assumed that [u] is a
prefix of [a]. *)
exception Not_prefix
(** [compare] is a lexical order on addresses *)
let compare = List.compare elt_cmp
(** [is_prefix ~strict u v] returns [true] if {ul
{- [u] is a prefix of [v]}
{- and [u≠v] if [strict] is set to [true]}, and [false]
otherwise.*)
let rec is_prefix ~strict a1 a2 =
match a1, a2 with
| [], [] when strict -> false
| [], [] -> true
| [], _::_ -> true
| _::_, [] -> false
| a::tl1, b::tl2 when a=b -> is_prefix ~strict tl1 tl2
| _ -> false
(** [extend add elt] extends the address [add] with the symbol
[elt] added at the end.*)
let rec extend l i =
match l with
| [] -> [i]
| a :: tl -> a :: (extend tl i)
let concat a1 a2 = a1 @ a2
(** [remove ~prefix w] returns [v] if [w=prefix v] and raises {!
Not_prefix} otherwise. *)
let rec remove ~prefix l =
match prefix, l with
| [], _ -> l
| a :: prefix', b :: tl when a = b -> remove ~prefix:prefix' tl
| _, _ -> raise Not_prefix
(** [pp fnt add] pretty prints the address [add] on the formatter
[fmt] *)
let pp = PPUtils.pp_list ~sep:"" elt_pp
end
(** The {!AddMap} module implements a trie data structure to represent
maps from {!Address.t} addresses to values of type ['a]*)
module AddMap =
struct
(** ['a t] is the type of sets of addresses *)
type 'a t = M of ('a option * 'a t option * 'a t option)
(** [empty] is the empty set of addresses *)
let empty = M (None, None, None)
(** [mem add m] returns [true] if [add] binds a value map [m] and
[false] otherwise. *)
let rec mem add m =
match add, m with
| [], M (None, _, _ ) -> false
| [], M (Some _, _, _ ) -> true
| Address.Zero::_, M (_, None, _) -> false
| Address.Zero::tl, M (_, Some left, _) -> mem tl left
| Address.One::_, M (_, _, None) -> false
| Address.One::tl, M (_, _, Some right) -> mem tl right
(** [mem add m] returns [true] if [add] binds a value map [m] and
[false] otherwise. *)
let rec find (add:Address.t) (m:'a t) : 'a =
match add, m with
| [], M (None, _, _ ) -> raise Not_found
| [], M (Some v, _, _ ) -> v
| Address.Zero::_, M (_, None, _) -> raise Not_found
| Address.Zero::tl, M (_, Some left, _) -> find tl left
| Address.One::_, M (_, _, None) -> raise Not_found
| Address.One::tl, M (_, _, Some right) -> find tl right
(** [add a v m] adds at the address [a] the value [v] into the map
[m], possibly changing the binding if [a] was already binding a
value in [m].*)
let rec add a v m =
match a, m with
| [], M (_, l, r) -> M (Some v, l, r)
| Address.Zero::tl, M (b, None, r) -> M (b, Some (add tl v empty), r)
| Address.Zero::tl, M (b, Some l, r) -> M (b, Some (add tl v l), r)
| Address.One::tl, M (b, l, None) -> M (b, l, Some (add tl v empty))
| Address.One::tl, M (b, l, Some r) -> M (b, l, Some (add tl v r))
let rec iter_aux f acc (M (b, _, _) as s) =
let () =
match b with
| None -> ()
| Some v -> f acc v in
match s with
| M (_, None, None) -> ()
| M (_, Some l, None) ->
iter_aux f (Address.extend acc Address.Zero) l
| M (_, None, Some r) ->
iter_aux f (Address.extend acc Address.One) r
| M (_, Some l, Some r) ->
let () = iter_aux f (Address.extend acc Address.Zero) l in
iter_aux f (Address.extend acc Address.One) r
(** [iter f m] iterates the function [f] on every [(k, v)] binding of
[m].*)
let iter f s = iter_aux f [] s
let to_lst m =
let rec to_lst_aux acc add (M (b, _, _) as s) =
let acc' =
match b with
| None -> acc
| Some v -> (add, v) :: acc in
match s with
| M (_, None, None) -> acc'
| M (_, Some l, None) ->
to_lst_aux acc' (Address.extend add Address.Zero) l
| M (_, None, Some r) ->
to_lst_aux acc' (Address.extend add Address.One) r
| M (_, Some l, Some r) ->
let acc'' = to_lst_aux acc' (Address.extend add Address.Zero) l in
to_lst_aux acc'' (Address.extend add Address.One) r in
to_lst_aux [] [] m
end
module AddSet =
struct
type t = unit AddMap.t
let empty = AddMap.empty
let mem = AddMap.mem
let add elt s = AddMap.add elt () s
let iter f s = AddMap.iter (fun a () -> f a) s
end
(** [min ~cmp lst] returns [elt,lst'] where [elt] is the minimal
element of [lst] according to the comparison function [cmp] (even
if it occurs several times), and [lst'] is [lst] with this
occurrence of [elt] removed .*)
let min ~cmp l =
let rec min_aux min acc l =
match min, l with
| _, [] -> min, acc
| None, a::tl -> min_aux (Some a) acc tl
| Some v, a::tl when (cmp a v) < 0 -> min_aux (Some a) (v::acc) tl
| _, a::tl -> min_aux min (a::acc) tl in
min_aux None [] l
let extend_map_to_lst = Utils.IntMap.add_to_list
module Domain = AddMap
(** This type records for linear and non linear variables at address
[a] the address of the binder that binds this variable. Therefore,
[Address.is_prefix ~strict:true k v] should always return true
whenever [k] maps to [v] in [nl_binders] or in [l_binders]. *)
type binders = { nl_binders : Address.t Domain.t;
l_binders : Address.t Domain.t; }
(** This module implements a map from the de Bruijn indices of a
variable the address of its binder (recorded when the
corresponding binder was crossed).*)
module BAdd = Lambda.MakeVarEnv (struct type info = Address.t let pp = Address.pp end)
(** A record type to keep track of maps from de Bruijn indices of
variables to addresses of their binders *)
type addresses = { nl_add : BAdd.t;
l_add : BAdd.t; }
(** When representing lambda-terms as trees with 0-ary (variables or
constants), 1-ary (abstraction), or 2-ary nodes, it's possible to
have a dedicated zipper type. The node information is basically
empty, and what is relevant is the local context, i.e., what is
right above a term (if it's the child of an abstraction), what is
on its right (if it's the functor of an application, [u] in [Rapp
u] being its argument), what is on its left (if it's the argument
of an application, [u] in [Lapp u] being the functor). *)
type term_local_context =
| LAbs of string
| Abs of string
| LApp of Lambda.term
| RApp of Lambda.term
type term_zipper =
| ZTop
| TZip of (term_zipper * term_local_context)
(** [zip_up (z, u)] returns the term [t] such that [u] is its subterm
in context [z]. *)
let rec zip_up (z, t) =
match z with
| ZTop -> t
| TZip (z', LAbs x) -> zip_up (z', Lambda.LAbs (x, t))
| TZip (z', Abs x) -> zip_up (z', Lambda.Abs (x, t))
| TZip (z', LApp u) -> zip_up (z', Lambda.App (u, t))
| TZip (z', RApp u) -> zip_up (z', Lambda.App (t, u))
type term_sig =
{ add:Address.t;
l_env:Lambda.env;
nl_env: Lambda.env;
duplicable: bool;
ctx:term_zipper;
term: Lambda.term;
}
(** [subterms_aux (levels, addresses, subtrees, binders) (t, add)]
returns a tuple [(height, consts), (subtrees', binders')] where
[height] is the height of the term [t], [consts] is the
lefto-to-right sequence of (indices of) constants it is made of,
[subtrees'] is [subtrees], a map from (the opposite of) their
heighth to terms (in order to fold over this map starting with the
highest subtrees), augmented with the subterms of [t], whose
address is [add], and [binders'] is the previous binders map (for
the term [t] is a subterm of) together with the binder map defined
by [t]. And [addresses] is a map from the level at which a binder
is introduced to its address with the tree. *)
let rec subterms_aux
(addresses, (l_nvenv, nvenv), (subtrees: (term_sig list) Utils.IntMap.t), binders)
(t, add, context) =
match t, context with
| Lambda.Var i, _ -> 0,
(extend_map_to_lst
0
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=false;
ctx=context;
term=t;}
subtrees,
{binders with
nl_binders =
Domain.add
add
(BAdd.get i addresses.nl_add)
binders.nl_binders})
| Lambda.LVar i, _ -> 0,
(extend_map_to_lst
0
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=false;
ctx=context;
term=t;}
subtrees,
{binders with
l_binders =
Domain.add
add
(BAdd.get i addresses.l_add)
binders.l_binders})
| Lambda.Const _, ZTop -> 0,
(extend_map_to_lst
0
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=true;
ctx=ZTop;
term=t;}
subtrees,
binders)
| Lambda.Const _, TZip (_, LApp _) ->
0,
(extend_map_to_lst
0
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=true;
ctx=context;
term=t;}
subtrees,
binders)
| Lambda.Const _, TZip (_, RApp _) ->
0,
(extend_map_to_lst
0
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=false;
ctx=context;
term=t;}
subtrees,
binders)
| Lambda.DConst _, _ -> failwith "Bug: should not occur. It is expected \
constant definition expansion has \
already been performed at this stage"
| Lambda.Abs (x, u), _ ->
let h, (n_subtrees, n_binders) =
subterms_aux
({addresses with nl_add = BAdd.add add addresses.nl_add},
(l_nvenv, Lambda.VNEnv.add x nvenv),
subtrees,
binders)
(u, Address.(extend add Zero), TZip(context, Abs x)) in
h+1,
(n_subtrees, n_binders)
| Lambda.LAbs (x, u), _ ->
let h, (n_subtrees, n_binders) =
subterms_aux
({addresses with l_add = BAdd.add add addresses.l_add},
(Lambda.VNEnv.add x l_nvenv, nvenv),
subtrees,
binders)
(u, Address.(extend add Zero), TZip(context, LAbs x)) in
h+1,
(n_subtrees, n_binders)
| Lambda.App (u, v), _ ->
let h_u, (n_subt, n_bs) = subterms_aux (addresses, (l_nvenv, nvenv), subtrees, binders) (u, Address.(extend add Zero), TZip(context, RApp v)) in
let h_v, (n_subtrees, n_binders) = subterms_aux (addresses, (l_nvenv, nvenv), n_subt, n_bs) (v, Address.(extend add One), TZip(context, LApp u)) in
let n_h = max h_u h_v in
let nn_subtrees =
match context with
| ZTop
| TZip (_, (LApp _ | Abs _ | LAbs _)) ->
extend_map_to_lst
(-(n_h+1))
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=true;
ctx=context;
term=t}
n_subtrees
| TZip (_, RApp _) ->
extend_map_to_lst
(-(n_h+1))
{add;
l_env=l_nvenv;
nl_env=nvenv;
duplicable=false;
ctx=context;
term=t}
n_subtrees in
n_h + 1,
(nn_subtrees, n_binders)
| _, _ -> failwith "Not implemented"
let subterms t =
let _, (subt, binders) =
subterms_aux
({nl_add = BAdd.empty;
l_add = BAdd.empty;},
Lambda.VNEnv.(empty, empty),
Utils.IntMap.empty,
{l_binders = Domain.empty;
nl_binders = Domain.empty;})
(t, [], ZTop) in
subt, binders
(** [congruent_aux ((w, w') binders add t1 t2] returns
[true] if the two terms [t1] (at address [w add]) and [t2] (at
address [w' add] are congruent *)
let rec congruent_aux (w, w') binders add t1 t2 =
match t1, t2, binders.l_binders, binders.nl_binders with
| Lambda.Const i, Lambda.Const j, _, _ -> i = j
| Lambda.Var _, Lambda.Var _, _, b_addresses
| Lambda.LVar _, Lambda.LVar _, b_addresses, _ ->
let full_add1 = Address.concat w add in
let full_add2 = Address.concat w' add in
let binder1 = Domain.find full_add1 b_addresses in
let binder2 = Domain.find full_add2 b_addresses in
if binder1 = binder2 then
true
else
begin
try
let u = Address.remove ~prefix:w binder1 in
let u' = Address.remove ~prefix:w' binder2 in
match Address.remove ~prefix:u add with
| [] -> false
| _ -> u = u'
| exception Address.Not_prefix -> false
with
| Address.Not_prefix ->
false
end
| Lambda.Abs (_, t1'), Lambda.Abs (_, t2'), _, _
| Lambda.LAbs (_, t1'), Lambda.LAbs (_, t2'), _, _ ->
congruent_aux (w, w') binders Address.(extend add Zero) t1' t2'
| Lambda.App (u1, v1), Lambda.App (u2, v2), _, _ ->
let res = congruent_aux (w, w') binders Address.(extend add Zero) u1 u2 in
if res then
congruent_aux (w, w') binders Address.(extend add One) v1 v2
else
false
| _ -> false
let congruent
~consts
binders
sg
sg' =
if (not sg.duplicable) || (not sg'.duplicable) then
false
else
let () =
Log.debug
(fun m ->
m
"Checking congruency of:@[<v>@,@[%a@]@,and@,@[%a@]@]"
(Lambda.pp_term ~env:(sg.l_env,sg.nl_env) consts)
sg.term
(Lambda.pp_term ~env:(sg'.l_env,sg'.nl_env) consts)
sg'.term) in
congruent_aux (sg.add, sg'.add) binders [] sg.term sg'.term
(** [partition ~skip ~pred l] returns [l_partition]
such that:
{ul
{- [l_partition] is a list [[l1; l2; .. ; ln]] of list of
elements such that for any [e1∈li] and [e2∈lj], [pred e1 e2] is
true if and only if [i=j]}
{- all elements of [l] {e but the ones for which [skip] returns
true} are in an element of [l_partition]} } } *)
let partition ~skip ~pred l =
let rec partition_aux ~skip ~pred l_partition l =
match l with
| [] -> l_partition
| a :: tl when skip a -> partition_aux ~skip ~pred l_partition tl
| a :: tl ->
let partition', found =
List.fold_left
(fun (c_partition, found) part ->
if found then
part :: c_partition, found
else
match part with
| [] -> c_partition, found
| b :: _ when pred a b -> (a :: part) :: c_partition, true
| _ -> part :: c_partition, found)
([], false)
l_partition in
let partition'' = if found then partition' else [a]::partition' in
(partition_aux ~skip ~pred partition'' tl) in
List.filter
(fun elt ->
match elt with
| _::_::_ -> true
| _ -> false)
(partition_aux ~skip ~pred [] l)
(** This exception is raised when a solution is found while scanning a
map, in order to avoid scanning all the map *)
exception Stop of (int * (term_sig * (term_sig list)))
let subterms_pp consts fmt subterms =
let dup_pp fmt b =
if b then
Tags.red_pp fmt "(duplicable)"
else
Tags.blue_pp fmt "(not duplicable)" in
List.iter (fun {l_env;nl_env;duplicable; add;term=t;_} -> Format.fprintf fmt "@[%a@ %a@] at address: %a@," (Lambda.pp_term ~env:(l_env, nl_env) consts) t dup_pp duplicable Address.pp add) subterms
[@@alert "-deprecated"]
[@@warning "-unused-value-declaration"]
(** [is_common_prefix ~strict a lst] returns [true] if [a] is a prefix
(resp. strict prefix) of all the address fields of the elements of
[lst]. *)
let is_common_prefix ~strict ad lst =
let rec is_common_prefix_aux acc ad = function
| [] -> acc
| a::tl when Address.is_prefix ~strict ad a.add ->
is_common_prefix_aux(true && acc) ad tl
| _ -> false in
is_common_prefix_aux true ad lst
(** [expand subterms level addresses (add, t)] compute the expanded
subterm of [t] at address [add] and current non-linear abstraction
level [level] as if a new [Abs] binder has been added at the [0]
level that would bien all variables whose addresses are in
[addresses]. Only (non-linear) variables are affected:
{ul
{- if [i < level], then [i] is unchanged}
{- if [i ≥ level], then [i] is replaced by [i + 1]}
{- if the current address [add] is in [addresses], then a new
variable indexed by [level] is introduced.}
}
*)
let expand_subterm addresses (add, t) =
let rec expand_subterm_aux level (add, t) =
if AddSet.mem add addresses then
Lambda.Var level
else
match t with
| Lambda.LVar _ -> t
| Lambda.Const _ -> t
| Lambda.DConst _ -> failwith "Bug: the term should be fully expanded"
| Lambda.LAbs (x, u) -> Lambda.LAbs (x, expand_subterm_aux level (Address.(extend add Zero),u))
| Lambda.Abs (x, u) -> Lambda.Abs (x, expand_subterm_aux (level + 1) (Address.(extend add Zero),u))
| Lambda.App (u, v) -> Lambda.App (expand_subterm_aux level (Address.(extend add Zero),u),
expand_subterm_aux level (Address.(extend add One),v))
| Lambda.Var i when i < level -> Lambda.Var i
| Lambda.Var i -> Lambda.Var (i + 1)
| _ -> failwith "Not implemented"
in expand_subterm_aux 0 (add, t)
(** [collapse ~consts t] returns [None] if [t] is unchanged through
the collapse algorithm (i.e., no subterm of atomic type occurs at
least twice in [t]), and [Some u] where [u] is the results of the
(recursive) collapse algorithm.
{b It is expected that [t] does not contain unexpanded defined
constants.}
If [consts] is provided, the mapping from constant ids to strings
(in some signature) is used to pretty prints terms if {!Log} log
level is set to some adequate level. Otherwise, each constant is
printed as [Const[i]].
*)
let collapse
?(consts=fun i -> Abstract_syntax.Abstract_syntax.Default,Printf.sprintf "Const(%d)" i)
t =
let rec collapse_aux ~res t =
let () = Log.debug (fun m -> m "Starting collapse of @[%a@]" (Lambda.pp_term consts) t) in
let heigth_to_subterms, binders = subterms t in
let () =
Log.debug
(fun m ->
let pp_map fmt map =
Utils.IntMap.iter
(fun k lst ->
Format.fprintf
fmt
"Listing the subterms of height %d@[<v2>@,%a@]@,"
(-k)
(subterms_pp consts)
lst)
map in
m "The subterms are:@ @[<v2> @[<v>%a@]@]" pp_map heigth_to_subterms) in
let () =
Log.debug
(fun m ->
m
"@[<v>@[Linear bindings:@[<v>@,@[<v>%a@]@,@]@,@]@[Non-linear bindings:@[<v>@,@[<v>%a@]@]@]@]"
(PPUtils.pp_list ~sep:"@," ~terminal:"@," (fun fmt (add1, add2) -> Format.fprintf fmt "%a ----> %a" Address.pp add1 Address.pp add2))
(AddMap.to_lst binders.l_binders)
(PPUtils.pp_list ~sep:"@," ~terminal:"@," (fun fmt (add1, add2) -> Format.fprintf fmt "%a ----> %a" Address.pp add1 Address.pp add2))
(AddMap.to_lst binders.nl_binders)) in
try
begin
let part =
Utils.IntMap.fold
(fun h subts intermed_res ->
let l_partitions =
partition
~skip:(fun {duplicable;_} -> not duplicable)
~pred:(fun a b -> congruent ~consts binders a b)
subts in
match l_partitions with
| [] ->
intermed_res
| _ ->
let () =
Log.debug
(fun m ->
List.iter
(fun part ->
m
"I found the following duplicated pivots of height %d: @[<v2>@,%a@]"
(-h)
(subterms_pp consts)
part)
(List.sort (fun l1 l2 -> List.compare_lengths l2 l1) l_partitions)) in
let cmp {add=a1;_} {add=a2;_} = Address.compare a1 a2 in
let l_partitions' =
List.map
(fun part ->
match min ~cmp part with
| None, _ -> failwith "Bug: should not occurr, \
partitions should not be \
empty"
| Some v, p -> v, p )
l_partitions in
match min ~cmp:(fun (m1,_) (m2,_) -> cmp m1 m2) l_partitions' with
| None, _ -> failwith "Bug: Should not occurr"
| Some res, _ -> raise (Stop (h, res)))
heigth_to_subterms
None in
match part, res with
| None, None -> None
| None, Some _ -> res
| Some _, _ -> failwith "Bug: should not happen"
end
with
| Stop (p_h, (({add;l_env;nl_env;term=leftmost_pivot;_} as dup_p), partition)) ->
let () = Log.debug
(fun m ->
m
"Found@ leftmost@ duplicated@ pivot@ at@ address: @[%a@]: %a"
Address.pp
add
(Lambda.pp_term ~env:(l_env, nl_env) consts)
leftmost_pivot) in
let () = Log.debug
(fun m ->
m
"Other congruent terms are at addresses:@[<v>@,%a@]"
(PPUtils.pp_list ~sep:"@," (fun fmt {add;_} -> Address.pp fmt add))
partition
) in
let dup_pivot_addresses =
List.fold_left
(fun acc {add=l_add;_} -> AddSet.add l_add acc)
(AddSet.empty |> AddSet.add add)
partition in
let min_pivot =
Utils.IntMap.fold
(fun h term_list acc ->
if h >= p_h then
acc
else
match
List.fold_left
(fun l_intermed_res t_sig ->
match l_intermed_res with
| None ->
if is_common_prefix ~strict:true t_sig.add (dup_p::partition) then
Some t_sig
else
l_intermed_res
| Some _ -> l_intermed_res)
None
term_list with
| None -> acc
| Some res -> Some (h, res))
heigth_to_subterms
None in
match min_pivot with
| None ->
failwith "Bug: I didn't find a minimal height pivot from which to expand"
| Some (h,t_sig) ->
let () = Log.debug (fun m -> m "I found a minimal height pivot of height %d at address: %a" (-h) Address.pp t_sig.add) in
let () = Log.debug (fun m -> m "The minimal height pivot is: @[%a@]" (Lambda.pp_term ~env:(t_sig.l_env, t_sig.nl_env) consts) t_sig.term) in
let expanded_subt = expand_subterm dup_pivot_addresses (t_sig.add,t_sig.term) in
let () = Log.debug (fun m -> m "Raw minimal height pivot: %s" (Lambda.raw_to_string t_sig.term)) in
let () = Log.debug (fun m -> m "Expanded minimal height pivot: %s" (Lambda.raw_to_string expanded_subt)) in
let expanded_t = Lambda.(App(Abs("Z",expanded_subt),leftmost_pivot)) in
let result = zip_up (t_sig.ctx,expanded_t) in
let () = Log.debug (fun m ->
let l_ref = Lambda.VNEnv.current_level t_sig.nl_env in
let nl_env = Lambda.VNEnv.shift ~info:"Z" ~level:(l_ref -1) t_sig.nl_env in
m
"Its expanded version is: @[%a@]"
(Lambda.pp_term ~env:(t_sig.l_env, nl_env) consts)
expanded_t) in
let () = Log.debug (fun m -> m "The whole term is: @[%a@]" (Lambda.pp_term consts) result) in
collapse_aux ~res:(Some result) (result) in
let res = collapse_aux ~res:None t in
match res with
| None -> let () = Log.debug (fun m -> m "I didn't find a collapsed term" ) in res
| Some t -> let () = Log.debug (fun m -> m "I found the collapsed term @[%a@]" (Lambda.pp_term consts) t) in res