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
type variable = int
module BddVarMap =
Map.Make(struct
type t = variable
let compare (x:variable) (y:variable) = compare x y
end)
type formula =
| Ffalse
| Ftrue
| Fvar of variable
| Fand of formula * formula
| For of formula * formula
| Fimp of formula * formula
| Fiff of formula * formula
| Fnot of formula
| Fite of formula * formula * formula
module type BDD = sig
val get_max_var : unit -> int
type t
type view = Zero | One | Node of variable * t * t
val view : t -> view
val var : t -> variable
val low : t -> t
val high : t -> t
val zero : t
val one : t
val make : variable -> low:t -> high:t -> t
val mk_var : variable -> t
val mk_not : t -> t
val mk_and : t -> t -> t
val mk_or : t -> t -> t
val mk_imp : t -> t -> t
val mk_iff : t -> t -> t
val mk_exist : (variable -> bool) -> t -> t
val mk_forall : (variable -> bool) -> t -> t
val apply : (bool -> bool -> bool) -> t -> t -> t
val constrain : t -> t -> t
val restriction : t -> t -> t
val restrict : t -> variable -> bool -> t
val build : formula -> t
val as_formula : t -> formula
val as_compact_formula : t -> formula
val is_sat : t -> bool
val tautology : t -> bool
val equivalent : t -> t -> bool
val entails : t -> t -> bool
val count_sat_int : t -> int
val count_sat : t -> Int64.t
val any_sat : t -> (variable * bool) list
val random_sat : t -> (variable * bool) list
val all_sat : t -> (variable * bool) list list
val print_var : Format.formatter -> variable -> unit
val print : Format.formatter -> t -> unit
val print_compact : Format.formatter -> t -> unit
val cnf_size: t -> int
val print_dimacs : Format.formatter -> t -> unit
val print_dot : Format.formatter -> t -> unit
val to_dot : t -> string
val print_to_dot : t -> file:string -> unit
val display : t -> unit
val nb_nodes : t -> int
val stats : unit -> (int * int * int * int * int * int) array
end
let debug = false
module Make(X: sig
val print_var: Format.formatter -> int -> unit
val size: int
val max_var: int
end) = struct
open X
let rec power_2_above x n =
if x >= n then x
else if x * 2 > Sys.max_array_length then x
else power_2_above (x * 2) n
let size = power_2_above 16 size
let print_var = print_var
let get_max_var () = max_var
type bdd = { tag: int; node : view }
and view = Zero | One | Node of variable * bdd * bdd
type t = bdd
let view b = b.node
let rec print fmt b =
match b.node with
| Zero -> Format.fprintf fmt "false"
| One -> Format.fprintf fmt "true"
| Node(v,l,h) ->
Format.fprintf fmt "@[<hv 2>if %a@ then %a@ else %a@]" print_var v print h print l
let rec print_compact fmt b =
match b.node with
| Zero -> Format.fprintf fmt "false"
| One -> Format.fprintf fmt "true"
| Node(v,{node=Zero;_},{node=One;_}) ->
Format.fprintf fmt "%a" print_var v
| Node(v,{node=One;_},{node=Zero;_}) ->
Format.fprintf fmt "!%a" print_var v
| Node(v,{node=Zero;_},h) ->
Format.fprintf fmt "@[%a /\\@ %a@]" print_var v print_compact h
| Node(v,{node=One;_},h) ->
Format.fprintf fmt "@[!%a \\/@ %a@]" print_var v print_compact h
| Node(v,l,{node=Zero;_}) ->
Format.fprintf fmt "@[!%a /\\@ %a@]" print_var v print_compact l
| Node(v,l,{node=One;_}) ->
Format.fprintf fmt "@[%a \\/@ %a@]" print_var v print_compact l
| Node(v,l,h) ->
Format.fprintf fmt "@[<hv 2>if %a@ then %a@ else %a@]" print_var v print_compact h print_compact l
(** perfect hashing is actually less efficient
let pair a b = (a + b) * (a + b + 1) / 2 + a
let triple a b c = pair c (pair a b)
let hash_node v l h = abs (triple l.tag h.tag v)
**)
let hash_node l h = 19 * l.tag + h.tag
let hash = function
| Zero -> 0
| One -> 1
| Node (_, l, h) -> hash_node l h
let gentag = let r = ref (-1) in fun () -> incr r; !r
type table = {
mutable table : bdd Weak.t array;
mutable totsize : int;
mutable limit : int;
}
let create sz =
let emptybucket = Weak.create 0 in
{ table = Array.make sz emptybucket;
totsize = 0;
limit = 3; }
let vt = Array.init max_var (fun _ -> create size)
let fold f t init =
let rec fold_bucket i b accu =
if i >= Weak.length b then accu else
match Weak.get b i with
| Some v -> fold_bucket (i+1) b (f v accu)
| None -> fold_bucket (i+1) b accu
in
Array.fold_right (fold_bucket 0) t.table init
let count t =
let rec count_bucket i b accu =
if i >= Weak.length b then accu else
count_bucket (i+1) b (accu + (if Weak.check b i then 1 else 0))
in
Array.fold_right (count_bucket 0) t.table 0
let rec resize t =
if debug then Format.eprintf "resizing...@.";
let oldlen = Array.length t.table in
let newlen = oldlen * 2 in
if newlen > oldlen then begin
let newt = create newlen in
newt.limit <- t.limit + 100;
fold (fun d () -> add newt d) t ();
t.table <- newt.table;
t.limit <- t.limit + 2;
end
and add t d =
add_index t d ((hash d.node) land (Array.length t.table - 1))
and add_index t d index =
let bucket = t.table.(index) in
let sz = Weak.length bucket in
let rec loop i =
if i >= sz then begin
let newsz = min (sz + 3) (Sys.max_array_length - 1) in
if newsz <= sz then
failwith "Hashcons.Make: hash bucket cannot grow more";
let newbucket = Weak.create newsz in
Weak.blit bucket 0 newbucket 0 sz;
Weak.set newbucket i (Some d);
t.table.(index) <- newbucket;
t.totsize <- t.totsize + (newsz - sz);
if t.totsize > t.limit * Array.length t.table then resize t;
end else begin
if Weak.check bucket i
then loop (i+1)
else Weak.set bucket i (Some d)
end
in
loop 0
let hashcons_node v l h =
let t = vt.(v - 1) in
let index = (hash_node l h) mod (Array.length t.table) in
let bucket = t.table.(index) in
let sz = Weak.length bucket in
let rec loop i =
if i >= sz then begin
let hnode = { tag = gentag (); node = Node (v, l, h) } in
add_index t hnode index;
hnode
end else begin
match Weak.get_copy bucket i with
| Some {node=Node(v',l',h'); _} when v==v' && l==l' && h==h' ->
begin match Weak.get bucket i with
| Some v -> v
| None -> loop (i+1)
end
| _ -> loop (i+1)
end
in
loop 0
let stat t =
let len = Array.length t.table in
let lens = Array.map Weak.length t.table in
Array.sort compare lens;
let totlen = Array.fold_left ( + ) 0 lens in
(len, count t, totlen, lens.(0), lens.(len/2), lens.(len-1))
let stats () = Array.map stat vt
let zero = { tag = gentag (); node = Zero }
let one = { tag = gentag (); node = One }
let var b = match b.node with
| Zero | One -> max_var + 1
| Node (v, _, _) -> v
let low b = match b.node with
| Zero | One -> invalid_arg "Bdd.low"
| Node (_, l, _) -> l
let high b = match b.node with
| Zero | One -> invalid_arg "Bdd.low"
| Node (_, _, h) -> h
let mk v ~low ~high =
if low == high then low else hashcons_node v low high
let make v ~low ~high =
if v < 1 || v > max_var then invalid_arg "Bdd.make";
mk v ~low ~high
let mk_var v =
if v < 1 || v > max_var then invalid_arg "Bdd.mk_var";
mk v ~low:zero ~high:one
module Bdd = struct
type t = bdd
let equal = (==)
let hash b = b.tag
let compare b1 b2 = Stdlib.compare b1.tag b2.tag
end
module H1 = Hashtbl.Make(Bdd)
let cache_default_size = 7001
let mk_not x =
let cache = H1.create cache_default_size in
let rec mk_not_rec x =
try
H1.find cache x
with Not_found ->
let res = match x.node with
| Zero -> one
| One -> zero
| Node (v, l, h) -> mk v ~low:(mk_not_rec l) ~high:(mk_not_rec h)
in
H1.add cache x res;
res
in
mk_not_rec x
let of_bool b = if b then one else zero
module H2 = Hashtbl.Make(
struct
type t = bdd * bdd
let equal (u1,v1) (u2,v2) = u1==u2 && v1==v2
let hash (u,v) =
let s = u.tag + v.tag in abs (s * (s+1) / 2 + u.tag)
end)
type operator =
| Op_and | Op_or | Op_imp
| Op_any of (bool -> bool -> bool)
let apply_op op b1 b2 = match op with
| Op_and -> b1 && b2
| Op_or -> b1 || b2
| Op_imp -> (not b1) || b2
| Op_any f -> f b1 b2
let gapply op =
let op_z_z = of_bool (apply_op op false false) in
let op_z_o = of_bool (apply_op op false true) in
let op_o_z = of_bool (apply_op op true false) in
let op_o_o = of_bool (apply_op op true true) in
fun b1 b2 ->
let cache = H2.create cache_default_size in
let rec app ((u1,u2) as u12) =
match op with
| Op_and ->
if u1 == u2 then
u1
else if u1 == zero || u2 == zero then
zero
else if u1 == one then
u2
else if u2 == one then
u1
else
app_gen u12
| Op_or ->
if u1 == u2 then
u1
else if u1 == one || u2 == one then
one
else if u1 == zero then
u2
else if u2 == zero then
u1
else
app_gen u12
| Op_imp ->
if u1 == zero then
one
else if u1 == one then
u2
else if u2 == one then
one
else
app_gen u12
| Op_any _ ->
app_gen u12
and app_gen ((u1,u2) as u12) =
match u1.node, u2.node with
| Zero, Zero -> op_z_z
| Zero, One -> op_z_o
| One, Zero -> op_o_z
| One, One -> op_o_o
| _ ->
try
H2.find cache u12
with Not_found ->
let res =
let v1 = var u1 in
let v2 = var u2 in
if v1 == v2 then
mk v1 ~low:(app (low u1, low u2)) ~high:(app (high u1, high u2))
else if v1 < v2 then
mk v1 ~low:(app (low u1, u2)) ~high:(app (high u1, u2))
else
mk v2 ~low:(app (u1, low u2)) ~high:(app (u1, high u2))
in
H2.add cache u12 res;
res
in
app (b1, b2)
let mk_and = gapply Op_and
let mk_or = gapply Op_or
let mk_imp = gapply Op_imp
let mk_iff = gapply (Op_any (fun b1 b2 -> b1 == b2))
let mk_ite f1 f2 f3 =
mk_and (mk_imp f1 f2) (mk_imp (mk_not f1) f3)
(** {2 quantifier elimination} *)
let rec quantifier_elim cache op filter b =
try
H1.find cache b
with Not_found ->
let res = match b.node with
| Zero | One -> b
| Node(v,l,h) ->
let low = quantifier_elim cache op filter l in
let high = quantifier_elim cache op filter h in
if filter v then
op low high
else
mk v ~low ~high
in
H1.add cache b res;
res
let mk_exist filter b =
let cache = H1.create cache_default_size in
quantifier_elim cache mk_or filter b
let mk_forall filter b =
let cache = H1.create cache_default_size in
quantifier_elim cache mk_and filter b
let rec extract_known_values cache b =
try
H1.find cache b
with Not_found ->
let res = match b.node with
| Zero | One -> BddVarMap.empty
| Node(v, {node=Zero;_}, h) ->
BddVarMap.add v true (extract_known_values cache h)
| Node(v, l, {node=Zero;_}) ->
BddVarMap.add v false (extract_known_values cache l)
| Node(_, l, h) ->
let m1 = extract_known_values cache l in
let m2 = extract_known_values cache h in
let merge_bool _ b1 b2 =
match b1, b2 with
| Some b1, Some b2 when b1=b2 -> Some b1
| _ -> None
in
BddVarMap.merge merge_bool m1 m2
in
H1.add cache b res;
res
let b =
let cache = H1.create cache_default_size in
extract_known_values cache b
let apply f = gapply (Op_any f)
let constrain b1 b2 =
let cache = H2.create cache_default_size in
let rec app ((u1,u2) as u12) =
match u1.node, u2.node with
| _, Zero -> failwith "constrain 0 is undefined"
| _, One -> u1
| Zero, _ -> u1
| One, _ -> u1
| _ ->
try
H2.find cache u12
with Not_found ->
let res =
let v1 = var u1 in
let v2 = var u2 in
if v1 == v2 then begin
if low u2 == zero then app (high u1, high u2)
else if high u2 == zero then app (low u1, low u2)
else mk (var u1) ~low:(app (low u1, low u2)) ~high:(app (high u1, high u2))
end
else if v1 < v2 then
mk v1 ~low:(app (low u1, u2)) ~high:(app (high u1, u2))
else
mk v2 ~low:(app (u1, low u2)) ~high:(app (u1, high u2))
in
H2.add cache u12 res;
res
in
app (b1, b2)
let restriction b1 b2 =
let cache = H2.create cache_default_size in
let rec app ((u1,u2) as u12) =
match u1.node, u2.node with
| _, Zero -> failwith "constrain 0 is undefined"
| _, One -> u1
| Zero, _ -> u1
| One, _ -> u1
| _ ->
try
H2.find cache u12
with Not_found ->
let res =
let v1 = var u1 in
let v2 = var u2 in
if v1 == v2 then begin
if low u2 == zero then app (high u1, high u2)
else if high u2 == zero then app (low u1, low u2)
else mk (var u1) ~low:(app (low u1, low u2)) ~high:(app (high u1, high u2))
end
else if v1 < v2 then
mk v1 ~low:(app (low u1, u2)) ~high:(app (high u1, u2))
else
app (u1, mk_or (low u2) (high u2))
in
H2.add cache u12 res;
res
in
app (b1, b2)
let restrict u x b =
let cache = H1.create cache_default_size in
let rec app u =
try
H1.find cache u
with Not_found ->
let res =
if var u > x then u
else if var u < x then mk (var u) ~low:(app (low u)) ~high:(app (high u))
else if b then app (high u)
else app (low u)
in
H1.add cache u res;
res
in
app u
let rec build = function
| Ffalse -> zero
| Ftrue -> one
| Fvar v -> mk_var v
| Fand (f1, f2) -> mk_and (build f1) (build f2)
| For (f1, f2) -> mk_or (build f1) (build f2)
| Fimp (f1, f2) -> mk_imp (build f1) (build f2)
| Fiff (f1, f2) -> mk_iff (build f1) (build f2)
| Fnot f -> mk_not (build f)
| Fite (f1, f2, f3) -> mk_ite (build f1) (build f2) (build f3)
let rec as_formula b =
match b.node with
| Zero -> Ffalse
| One -> Ftrue
| Node(v,l,h) -> Fite (Fvar v, as_formula h, as_formula l)
let rec as_compact_formula b =
match b.node with
| Zero -> Ffalse
| One -> Ftrue
| Node(v,{node=Zero;_},{node=One;_}) ->
Fvar v
| Node(v,{node=One;_},{node=Zero;_}) ->
Fnot (Fvar v)
| Node(v,{node=Zero;_},h) ->
Fand (Fvar v, as_compact_formula h)
| Node(v,{node=One;_},h) ->
For (Fnot (Fvar v), as_compact_formula h)
| Node(v,l,{node=Zero;_}) ->
Fand (Fnot (Fvar v), as_compact_formula l)
| Node(v,l,{node=One;_}) ->
For (Fvar v, as_compact_formula l)
| Node(v,l,h) ->
Fite (Fvar v, as_compact_formula h, as_compact_formula l)
let mk_Fand f1 f2 =
match f2 with
| Ftrue -> f1
| _ -> Fand(f1,f2)
let as_compact_formula b =
let m = extract_known_values b in
let reduced_bdd =
mk_exist (fun v ->
try let _ = BddVarMap.find v m in true
with Not_found -> false) b
in
let f = as_compact_formula reduced_bdd in
BddVarMap.fold
(fun v b f ->
mk_Fand (if b then Fvar v else Fnot(Fvar v)) f )
m f
let is_sat b = b.node != Zero
let tautology b = b.node == One
let equivalent b1 b2 = b1 == b2
let entails b1 b2 = tautology (mk_imp b1 b2)
let rec int64_two_to = function
| 0 ->
Int64.one
| n ->
let r = int64_two_to (n/2) in
let r2 = Int64.mul r r in
if n mod 2 == 0 then r2 else Int64.mul (Int64.of_int 2) r2
let count_sat_int b =
let cache = H1.create cache_default_size in
let rec count b =
try
H1.find cache b
with Not_found ->
let n = match b.node with
| Zero -> 0
| One -> 1
| Node (v, l, h) ->
let dvl = var l - v - 1 in
let dvh = var h - v - 1 in
(1 lsl dvl) * count l + (1 lsl dvh) * count h
in
H1.add cache b n;
n
in
(1 lsl (var b - 1)) * count b
let count_sat b =
let cache = H1.create cache_default_size in
let rec count b =
try
H1.find cache b
with Not_found ->
let n = match b.node with
| Zero -> Int64.zero
| One -> Int64.one
| Node (v, l, h) ->
let dvl = var l - v - 1 in
let dvh = var h - v - 1 in
Int64.add
(Int64.mul (int64_two_to dvl) (count l))
(Int64.mul (int64_two_to dvh) (count h))
in
H1.add cache b n;
n
in
Int64.mul (int64_two_to (var b - 1)) (count b)
let any_sat =
let rec mk acc b = match b.node with
| Zero -> raise Not_found
| One -> acc
| Node (v, {node=Zero; _}, h) -> mk ((v,true)::acc) h
| Node (v, l, _) -> mk ((v,false)::acc) l
in
mk []
let random_sat =
let rec mk acc b = match b.node with
| Zero -> raise Not_found
| One -> acc
| Node (v, {node=Zero; _}, h) -> mk ((v,true) :: acc) h
| Node (v, l, {node=Zero; _}) -> mk ((v,false) :: acc) l
| Node (v, l, _) when Random.bool () -> mk ((v,false) :: acc) l
| Node (v, _, h) -> mk ((v,true) :: acc) h
in
mk []
let all_sat =
let cache = H1.create cache_default_size in
let rec mk b =
try
H1.find cache b
with Not_found ->
let res = match b.node with
| Zero -> []
| One -> [[]]
| Node (v, l, h) ->
(List.map (fun a -> (v,false)::a) (mk l))
@ (List.map (fun a -> (v,true)::a) (mk h))
in
H1.add cache b res;
res
in
mk
(** iter-like traversal of a bdd *)
let iter ~zero:(zero: unit -> unit) ~one:(one: unit -> unit)
(f: variable -> low:t -> high:t -> unit)
(b: t) : unit =
let visited = H1.create cache_default_size in
let rec visit b =
if not (H1.mem visited b) then (
H1.add visited b ();
match b.node with
| Zero -> zero ()
| One -> one ()
| Node (v, low, high) -> f v ~low ~high; visit high; visit low
) in
visit b
let nb_nodes b =
let n = ref 0 in
iter ~zero:(fun () -> ()) ~one:(fun () -> ())
(fun _ ~low:_ ~high:_ -> incr n) b;
!n
(** fold-like traversal of a bdd *)
let fold ~(zero: 'a) ~(one: 'a)
(f: variable -> low:'a -> high:'a -> 'a) (b: t) : 'a =
let cache = H1.create cache_default_size in
let rec visit b =
try
H1.find cache b
with Not_found ->
match b.node with
| Zero -> zero
| One -> one
| Node (v, l, h) ->
let y = f v ~low:(visit l) ~high:(visit h) in
H1.add cache b y;
y
in
visit b
let cnf_size (b: t) : int =
fold ~zero:1 ~one:0 (fun _ ~low ~high -> low + high) b
let paths_to_zero b =
fold ~zero:[[]] ~one:[]
(fun v ~low ~high ->
List.map (fun p -> v :: p) low @
List.map (fun p -> -v :: p) high )
b
let print_dimacs fmt b =
let nc = cnf_size b in
Format.fprintf fmt "p cnf %d %d@\n" max_var nc;
match b.node with
| Zero -> Format.fprintf fmt "0"
| One -> ()
| _ ->
let print_literal x = Format.fprintf fmt "%d " x in
let print_clause c = List.iter print_literal c; Format.fprintf fmt "0" in
let rec print_clauses = function
| [] -> ()
| c :: cl ->
print_clause c;
if cl <> [] then (Format.fprintf fmt "@\n"; print_clauses cl) in
print_clauses (paths_to_zero b)
module S = Set.Make(Bdd)
open Format
let print_dot fmt b =
fprintf fmt "digraph bdd {@\n";
let ranks = Hashtbl.create 17 in
let add_rank v b =
try Hashtbl.replace ranks v (S.add b (Hashtbl.find ranks v))
with Not_found -> Hashtbl.add ranks v (S.singleton b)
in
let visited = H1.create cache_default_size in
let rec visit b =
if not (H1.mem visited b) then begin
H1.add visited b ();
match b.node with
| Zero ->
fprintf fmt "%d [shape=box label=\"0\"];" b.tag
| One ->
fprintf fmt "%d [shape=box label=\"1\"];" b.tag
| Node (v, l, h) ->
add_rank v b;
fprintf fmt "%d [label=\"%a\"];" b.tag print_var v;
fprintf fmt "%d -> %d;@\n" b.tag h.tag;
fprintf fmt "%d -> %d [style=\"dashed\"];@\n" b.tag l.tag;
visit h; visit l
end
in
Hashtbl.iter
(fun _ s ->
fprintf fmt "{rank=same; ";
S.iter (fun x -> fprintf fmt "%d " x.tag) s;
fprintf fmt ";}@\n"
)
ranks;
visit b;
fprintf fmt "}@."
let to_dot b =
Buffer.truncate Format.stdbuf 0;
print_dot Format.str_formatter b;
Buffer.contents Format.stdbuf
let print_to_dot b ~file =
let c = open_out file in
let fmt = formatter_of_out_channel c in
print_dot fmt b;
close_out c
let display b =
let file = Filename.temp_file "bdd" ".dot" in
print_to_dot b ~file;
let cmd = sprintf "dot -Tps %s | gv -" file in
begin try ignore (Sys.command cmd) with _ -> () end;
try Sys.remove file with _ -> ()
end
let make ?(print_var=fun ff -> Format.fprintf ff "x%d")
?(size=7001)
max_var
= let module B = Make(struct let print_var = print_var
let size = size let max_var = max_var end) in
(module B: BDD)