forked from cubicle-model-checker/cubicle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixpoint.ml
487 lines (405 loc) · 14.1 KB
/
fixpoint.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
(**************************************************************************)
(* *)
(* Cubicle *)
(* *)
(* Copyright (C) 2011-2014 *)
(* *)
(* Sylvain Conchon and Alain Mebsout *)
(* Universite Paris-Sud 11 *)
(* *)
(* *)
(* This file is distributed under the terms of the Apache Software *)
(* License version 2.0 *)
(* *)
(**************************************************************************)
open Format
open Options
open Util
open Ast
open Types
module Debug = struct
let fixpoint =
if not debug then fun _ -> () else
fun ls ->
eprintf "\nAfter simplification, subsumption and fixpoint check : @.";
match ls with
| [] -> eprintf "No new branches@."
| _ ->
List.iter (eprintf "@.New branch : %a@." Node.print) ls
let unsafe =
if not debug then fun _ -> () else
fun s ->
eprintf "FIX: %a@." Node.print s
end
(* TODO ici *)
(********************************************************)
(* Incremental fixpoint check : s => \/_{p \in nodes} p *)
(********************************************************)
exception Fixpoint of int list
module FixpointList : sig
val pure_smt_check : Node.t -> Node.t list -> int list option
val check : Node.t -> Node.t list -> int list option
end = struct
let check_fixpoint ?(pure_smt=false) n visited =
Prover.assume_goal n;
let n_array = n.cube.Cube.array in
let nodes =
List.fold_left
(fun nodes vis_n ->
let vis_cube = vis_n.cube in
let d = Instantiation.relevant ~of_cube:vis_cube ~to_cube:n.cube in
List.fold_left
(fun nodes ss ->
let vis_renamed = ArrayAtom.apply_subst ss vis_cube.Cube.array in
if not pure_smt && ArrayAtom.subset vis_renamed n_array then
raise (Fixpoint [vis_n.tag])
(* Heuristic : throw away nodes too much different *)
(* else if ArrayAtom.nb_diff pp anp > 2 then nodes *)
(* line below useful for arith : ricart *)
else if not pure_smt &&
Cube.inconsistent_2arrays vis_renamed n_array then nodes
else if ArrayAtom.nb_diff vis_renamed n_array > 1 then
(vis_n, vis_renamed)::nodes
else (Prover.assume_node vis_n vis_renamed; nodes)
) nodes d
) [] visited
in
TimeSort.start ();
let nodes =
List.fast_sort
(fun (n1, a1) (n2, a2) -> ArrayAtom.compare_nb_common n_array a1 a2)
nodes
in
TimeSort.pause ();
List.iter (fun (vn, ar_renamed) -> Prover.assume_node vn ar_renamed) nodes
let easy_fixpoint s nodes =
if delete && (s.deleted || Node.has_deleted_ancestor s)
then Some []
else
let db = ref None in
let ars = Node.array s in
ignore (List.exists
(fun sp ->
if ArrayAtom.subset (Node.array sp) ars then
begin db := Some [sp.tag]; true end
else false
) nodes);
!db
let hard_fixpoint s nodes =
try
check_fixpoint s nodes;
None
with
| Fixpoint db -> Some db
| Exit -> None
| Smt.Unsat db -> Some db
let pure_smt_check s nodes =
try
check_fixpoint ~pure_smt:true s nodes;
None
with
| Fixpoint db -> Some db
| Exit -> None
| Smt.Unsat db -> Some db
let check s visited =
Debug.unsafe s;
TimeFix.start ();
let r =
match easy_fixpoint s visited with
| None -> hard_fixpoint s visited
| r -> r
in
TimeFix.pause ();
r
end
(*************** Certificates from fixpoints *******************)
module FixpointCertif : sig
val useful_instances : Node.t -> Node.t list -> (Node.t * Variable.subst) list
end = struct
type env = {
mutable hid_cubes : (int, (Node.t * Variable.subst)) Hashtbl.t;
mutable cur_id : int;
}
let empty_env = {
hid_cubes = Hashtbl.create 17;
cur_id = 0
}
let fresh_id env =
env.cur_id <- env.cur_id + 1;
env.cur_id + 1
let assume_node env n sigma a =
let nid = fresh_id env in
Hashtbl.add env.hid_cubes nid (n, sigma);
Prover.assume_node { n with tag = nid } a
let check_fixpoint env ?(pure_smt=false) n visited =
Prover.assume_goal n;
let n_array = n.cube.Cube.array in
let nodes =
List.fold_left
(fun nodes vis_n ->
let vis_cube = vis_n.cube in
let d = Instantiation.relevant ~of_cube:vis_cube ~to_cube:n.cube in
List.fold_left
(fun nodes ss ->
let vis_renamed = ArrayAtom.apply_subst ss vis_cube.Cube.array in
if not pure_smt && ArrayAtom.subset vis_renamed n_array then
begin
let nid = fresh_id env in
Hashtbl.add env.hid_cubes nid (vis_n, ss);
raise (Fixpoint [nid])
end
(* Heuristic : throw away nodes too much different *)
(* else if ArrayAtom.nb_diff pp anp > 2 then nodes *)
(* line below useful for arith : ricart *)
else if not pure_smt &&
Cube.inconsistent_2arrays vis_renamed n_array then nodes
else if ArrayAtom.nb_diff vis_renamed n_array > 1 then
(vis_n, ss, vis_renamed)::nodes
else (assume_node env vis_n ss vis_renamed; nodes)
) nodes d
) [] visited
in
TimeSort.start ();
let nodes =
List.fast_sort
(fun (n1,_,a1) (n2,_,a2) -> ArrayAtom.compare_nb_common n_array a1 a2)
nodes
in
TimeSort.pause ();
List.iter (fun (vn, ss, ar_renamed) ->
assume_node env vn ss ar_renamed) nodes
let easy_fixpoint env s nodes =
if delete && (s.deleted || Node.has_deleted_ancestor s)
then Some []
else
let db = ref None in
let ars = Node.array s in
ignore (List.exists
(fun sp ->
if ArrayAtom.subset (Node.array sp) ars then
begin
let nid = fresh_id env in
let vars = Node.variables sp in
let ss = Variable.build_subst vars vars in
Hashtbl.add env.hid_cubes nid (sp, ss);
db := Some [nid]; true
end
else false
) nodes);
!db
let hard_fixpoint env s nodes =
try
check_fixpoint env s nodes;
None
with
| Fixpoint db -> Some db
| Exit -> None
| Smt.Unsat db -> Some db
let pure_smt_check env s nodes =
try
check_fixpoint env ~pure_smt:true s nodes;
None
with
| Fixpoint db -> Some db
| Exit -> None
| Smt.Unsat db -> Some db
let check env s visited =
Debug.unsafe s;
TimeFix.start ();
let r =
match easy_fixpoint env s visited with
| None -> hard_fixpoint env s visited
| r -> r
in
TimeFix.pause ();
r
let useful_instances s visited =
let env = {
hid_cubes = Hashtbl.create (3 * (List.length visited));
cur_id = s.tag
} in
match check env s visited with
| None -> assert false
| Some db ->
(* eprintf "\n> mon id %d \n" s.tag; *)
(* List.iter (eprintf "\n>%d ") db; eprintf "@."; *)
let db = List.filter (fun id -> not (id = s.tag)) db in
(* List.iter (eprintf "\n>>%d ") db; eprintf "@."; *)
(* Hashtbl.iter (fun id (n, sigma) -> *)
(* eprintf "id:%d == %d[%a]@." id n.tag *)
(* Variable.print_subst sigma) env.hid_cubes; *)
List.map (Hashtbl.find env.hid_cubes) db
end
(*************** Operations with tries () *******************)
module FixpointTrie : sig
val easy_fixpoint : Node.t -> Node.t Cubetrie.t -> int list option
val peasy_fixpoint : Node.t -> Node.t Cubetrie.t -> int list option
val hard_fixpoint : Node.t -> Node.t Cubetrie.t -> int list option
val check : Node.t -> Node.t Cubetrie.t -> int list option
end = struct
let first_action =
match Prover.SMT.check_strategy with
| Smt.Eager -> Prover.assume_goal
| Smt.Lazy -> Prover.assume_goal_no_check
let assume =
match Prover.SMT.check_strategy with
| Smt.Eager -> Prover.assume_node
| Smt.Lazy -> Prover.assume_node_no_check
let last_action =
match Prover.SMT.check_strategy with
| Smt.Eager -> fun () -> ()
| Smt.Lazy -> Prover.run
let check_and_add n nodes vis_n=
let n_array = Node.array n in
let vis_cube = vis_n.cube in
let vis_array = vis_cube.Cube.array in
let d = Instantiation.relevant ~of_cube:vis_cube ~to_cube:n.cube in
List.fold_left
(fun nodes ss ->
let vis_renamed = ArrayAtom.apply_subst ss vis_array in
(* if ArrayAtom.subset vis_renamed n_array then *)
(* raise (Fixpoint [vis_n.Node.tag]) *)
(* Heuristic : throw away nodes too much different *)
(* else if ArrayAtom.nb_diff pp anp > 2 then nodes *)
(* line below useful for arith : ricart *)
if Cube.inconsistent_2arrays vis_renamed n_array then nodes
else if true || ArrayAtom.nb_diff vis_renamed n_array > 1 then
(vis_n, vis_renamed)::nodes
else
(* These are worth assuming and checking right away because they might
yield unsatifisability sooner *)
(Prover.assume_node vis_n vis_renamed; nodes)
) nodes d
let check_fixpoint s visited =
first_action s;
let s_array = Node.array s in
let unprioritize_cands = false in
let nodes, cands =
Cubetrie.fold
(fun (nodes, cands) vis_p ->
if unprioritize_cands && vis_p.kind = Approx then
nodes, vis_p :: cands
else check_and_add s nodes vis_p, cands
) ([], []) visited in
let nodes = List.fold_left (check_and_add s) nodes cands in
TimeSort.start ();
let nodes = match Prover.SMT.check_strategy with
| Smt.Lazy -> nodes
| Smt.Eager ->
List.fast_sort
(fun (n1, a1) (n2, a2) ->
if unprioritize_cands &&
n1.kind = Approx && n2.kind <> Approx then 1
(* a1 is a candidate *)
else
if unprioritize_cands &&
n2.kind = Approx && n1.kind <> Approx then 1
(* a2 is a candidate *)
else ArrayAtom.compare_nb_common s_array a1 a2)
nodes
in
TimeSort.pause ();
List.iter (fun (vn, ar_renamed) -> assume vn ar_renamed) nodes;
last_action ()
let easy_fixpoint s nodes =
if delete && (s.deleted || Node.has_deleted_ancestor s)
then Some []
else Cubetrie.mem_array (Node.array s) nodes
let medium_fixpoint s visited =
let vars, s_array = Node.variables s, Node.array s in
let substs = Variable.all_permutations vars vars in
let substs = List.tl substs in (* Drop 'identity' permutation.
Already checked in easy_fixpoint. *)
try
List.iter (fun ss ->
let u = ArrayAtom.apply_subst ss s_array in
match Cubetrie.mem_array u visited with
| Some uc -> raise (Fixpoint uc)
| None -> ()
) substs;
None
with Fixpoint uc -> Some uc
let hard_fixpoint s nodes =
try
check_fixpoint s nodes;
None
with
| Fixpoint db -> Some db
| Exit -> None
| Smt.Unsat db -> Some db
let peasy_fixpoint s nodes =
match easy_fixpoint s nodes with
| None -> medium_fixpoint s nodes
| r -> r
let check s nodes =
Debug.unsafe s;
TimeFix.start ();
let r =
match easy_fixpoint s nodes with
| None ->
(match medium_fixpoint s nodes with
| None -> hard_fixpoint s nodes
| r -> r)
| r -> r
in
TimeFix.pause ();
r
end
module FixpointTrieNaive : sig
val check : Node.t -> Node.t Cubetrie.t -> int list option
end = struct
let check_and_add n nodes vis_n=
let vis_cube = vis_n.cube in
let vis_array = vis_cube.Cube.array in
let d = Instantiation.exhaustive ~of_cube:vis_cube ~to_cube:n.cube in
List.fold_left
(fun nodes ss ->
let vis_renamed = ArrayAtom.apply_subst ss vis_array in
(vis_n, vis_renamed)::nodes
) nodes d
let check_fixpoint s visited =
let nodes =
Cubetrie.fold
(fun nodes vis_p ->
check_and_add s nodes vis_p) [] visited in
Prover.assume_goal_nodes s nodes
let easy_fixpoint s nodes =
if delete && (s.deleted || Node.has_deleted_ancestor s)
then Some []
else Cubetrie.mem_array (Node.array s) nodes
let medium_fixpoint s visited =
let vars, s_array = Node.variables s, Node.array s in
let substs = Variable.all_permutations vars vars in
let substs = List.tl substs in (* Drop 'identity' permutation.
Already checked in easy_fixpoint. *)
try
List.iter (fun ss ->
let u = ArrayAtom.apply_subst ss s_array in
match Cubetrie.mem_array u visited with
| Some uc -> raise (Fixpoint uc)
| None -> ()
) substs;
None
with Fixpoint uc -> Some uc
let hard_fixpoint s nodes =
try
check_fixpoint s nodes;
None
with
| Fixpoint db -> Some db
| Exit -> None
| Smt.Unsat db -> Some db
let check s nodes =
Debug.unsafe s;
TimeFix.start ();
let r = hard_fixpoint s nodes in
(* match easy_fixpoint s nodes with *)
(* | None -> *)
(* (match medium_fixpoint s nodes with *)
(* | None -> hard_fixpoint s nodes *)
(* | r -> r) *)
(* | r -> r *)
(* in *)
TimeFix.pause ();
r
end