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
open Util
type 'a t =
Var of int * int
| Node of 'a * 'a t array array
| Rec of int * 'a t array
let mk_rec_calls i = Array.init i (fun j -> Var(0,j))
let mk_node lab sons = Node (lab, sons)
let rec lift_rtree_rec depth n = function
Var (i,j) as t -> if i < depth then t else Var (i+n,j)
| Node (l,sons) -> Node (l,Array.map (Array.map (lift_rtree_rec depth n)) sons)
| Rec(j,defs) ->
Rec(j, Array.map (lift_rtree_rec (depth+1) n) defs)
let lift n t = if Int.equal n 0 then t else lift_rtree_rec 0 n t
let rec subst_rtree_rec depth sub = function
Var (i,j) as t ->
if i < depth then t
else if i = depth then
lift depth (Rec (j, sub))
else Var (i - 1, j)
| Node (l,sons) -> Node (l,Array.map (Array.map (subst_rtree_rec depth sub)) sons)
| Rec(j,defs) ->
Rec(j, Array.map (subst_rtree_rec (depth+1) sub) defs)
let subst_rtree sub t = subst_rtree_rec 0 sub t
let rec expand = function
| Rec(j,defs) ->
expand (subst_rtree defs defs.(j))
| t -> t
let mk_rec defs =
let rec check histo d = match expand d with
| Var (0, j) ->
if Int.Set.mem j histo then failwith "invalid rec call"
else check (Int.Set.add j histo) defs.(j)
| _ -> ()
in
Array.mapi (fun i d -> check (Int.Set.singleton i) d; Rec(i,defs)) defs
let dest_var t =
match expand t with
Var (i,j) -> (i,j)
| _ -> failwith "Rtree.dest_var"
let dest_node t =
match expand t with
Node (l,sons) -> (l,sons)
| _ -> failwith "Rtree.dest_node"
let is_node t =
match expand t with
Node _ -> true
| _ -> false
let rec map f t = match t with
Var(i,j) -> Var(i,j)
| Node (a,sons) -> Node (f a, Array.map (Array.map (map f)) sons)
| Rec(j,defs) -> Rec (j, Array.map (map f) defs)
module Smart =
struct
let map f t = match t with
Var _ -> t
| Node (a,sons) ->
let a'=f a and sons' = Array.Smart.map (Array.Smart.map (map f)) sons in
if a'==a && sons'==sons then t
else Node (a',sons')
| Rec(j,defs) ->
let defs' = Array.Smart.map (map f) defs in
if defs'==defs then t
else Rec(j,defs')
end
(** Structural equality test, parametrized by an equality on elements *)
let rec raw_eq cmp t t' = match t, t' with
| Var (i,j), Var (i',j') -> Int.equal i i' && Int.equal j j'
| Node (x, a), Node (x', a') -> cmp x x' && Array.equal (Array.equal (raw_eq cmp)) a a'
| Rec (i, a), Rec (i', a') -> Int.equal i i' && Array.equal (raw_eq cmp) a a'
| _ -> false
let raw_eq2 cmp (t,u) (t',u') = raw_eq cmp t t' && raw_eq cmp u u'
(** Equivalence test on expanded trees. It is parametrized by two
equalities on elements:
- [cmp] is used when checking for already seen trees
- [cmp'] is used when comparing node labels. *)
let equiv cmp cmp' =
let rec compare histo t t' =
List.mem_f (raw_eq2 cmp) (t,t') histo ||
match expand t, expand t' with
| Node(x,v), Node(x',v') ->
cmp' x x' &&
Int.equal (Array.length v) (Array.length v') &&
Array.for_all2 (Array.for_all2 (compare ((t,t')::histo))) v v'
| _ -> false
in compare []
(** The main comparison on rtree tries first physical equality, then
the structural one, then the logical equivalence *)
let equal cmp t t' =
t == t' || raw_eq cmp t t' || equiv cmp cmp t t'
(** Intersection of rtrees of same arity *)
let rec inter cmp interlbl def n histo t t' =
try
let (i,j) = List.assoc_f (raw_eq2 cmp) (t,t') histo in
Var (n-i-1,j)
with Not_found ->
match t, t' with
| Var (i,j), Var (i',j') ->
assert (Int.equal i i' && Int.equal j j'); t
| Node (x, a), Node (x', a') ->
(match interlbl x x' with
| None -> mk_node def [||]
| Some x'' -> Node (x'', Array.map2 (Array.map2 (inter cmp interlbl def n histo)) a a'))
| Rec (i,v), Rec (i',v') ->
if Int.equal i i' && Int.equal (Array.length v) (Array.length v') then
let histo = ((t,t'),(n,i))::histo in
Rec(i, Array.map2 (inter cmp interlbl def (n+1) histo) v v')
else
let histo = ((t,t'),(n,0))::histo in
Rec(0, [|inter cmp interlbl def (n+1) histo (expand t) (expand t')|])
| Rec _, _ -> inter cmp interlbl def n histo (expand t) t'
| _ , Rec _ -> inter cmp interlbl def n histo t (expand t')
| _ -> assert false
let inter cmp interlbl def t t' = inter cmp interlbl def 0 [] t t'
(** Inclusion of rtrees. We may want a more efficient implementation. *)
let incl cmp interlbl def t t' =
equal cmp t (inter cmp interlbl def t t')
(** Tests if a given tree is infinite, i.e. has a branch of infinite length.
This corresponds to a cycle when visiting the expanded tree.
We use a specific comparison to detect already seen trees. *)
let is_infinite cmp t =
let rec is_inf histo t =
List.mem_f (raw_eq cmp) t histo ||
match expand t with
| Node (_,v) -> Array.exists (Array.exists (is_inf (t::histo))) v
| _ -> false
in
is_inf [] t
open Pp
let rec pr_tree prl t =
match t with
| Var (i,j) -> str"#"++int i++str":"++int j
| Node(lab,[||]) -> prl lab
| Node(lab,v) ->
hov 0 (prl lab++str","++spc()++
str"["++
hv 0 (prvect_with_sep pr_comma (fun a ->
str"("++
hv 0 (prvect_with_sep pr_comma (pr_tree prl) a)++
str")") v)++
str"]")
| Rec(i,v) ->
if Int.equal (Array.length v) 0 then str"Rec{}"
else if Int.equal (Array.length v) 1 then
hv 2 (str"Rec{"++pr_tree prl v.(0)++str"}")
else
hv 2 (str"Rec{"++int i++str","++brk(1,0)++
prvect_with_sep pr_comma (pr_tree prl) v++str"}")