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
module type WHS = sig
type key
type 'a t
val create : int -> 'a t
val replace : 'a t -> key -> 'a -> unit
val remove : 'a t -> key -> unit
val find : 'a t -> key -> 'a
val mem : 'a t -> key -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val clear : 'a t -> unit
val length : 'a t -> int
end
module WeakHash(H: Hashtbl.HashedType) : WHS with type key = H.t = struct
type key = H.t
type 'a t = {
mutable weak: 'a Weak.t;
mutable key: (H.t * int) option array;
mutable length: int;
}
let create init_size =
let init_size =
if init_size > Sys.max_array_length - 1 then
Sys.max_array_length - 1
else
init_size
in
{
weak = Weak.create init_size;
key = Array.make init_size None;
length = 0;
}
let insert_raw t h k v =
let len = Array.length t.key in
let i = h mod len in
let rec insert_index i =
match t.key.(i) with
| None ->
t.key.(i) <- Some (k, h);
Weak.set t.weak i (Some v);
t.length <- t.length + 1
| Some _ ->
insert_index ((i + 1) mod len)
in
insert_index i
let resize t =
let new_alloc = Array.length t.key * 2 in
let t' = create new_alloc in
Array.iteri (fun i -> function
| None -> ()
| Some (k, h) ->
match Weak.get t.weak i with
| None -> ()
| Some ptr ->
insert_raw t' h k ptr
) t.key;
t.weak <- t'.weak;
t.key <- t'.key;
t.length <- t'.length
let replace t k v =
if t.length + 1 > Array.length t.key lsr 1 then
resize t;
insert_raw t (H.hash k) k v
let find_raw t k =
let len = Array.length t.key in
let h = H.hash k in
let rec find_index i =
let i = i mod len in
match t.key.(i) with
| None ->
raise Not_found
| Some (k',h') ->
if h == h' && H.equal k k' then
match Weak.get t.weak i with
| None ->
find_index (i+1)
| Some v -> (v,i)
else
find_index (i+1)
in
find_index h
let remove t k =
try
let i = snd (find_raw t k) in
let len = Array.length t.key in
let rec accum acc i =
let i = i mod len in
match t.key.(i) with
| None -> acc
| Some (k,h) ->
t.key.(i) <- None;
t.length <- t.length - 1;
match Weak.get t.weak i with
| None -> accum acc (i+1)
| Some v -> accum ((k,h,v)::acc) (i+1)
in
t.key.(i) <- None;
t.length <- t.length - 1;
let acc = accum [] (i+1) in
List.iter (fun (k,h,v) -> insert_raw t h k v) acc
with Not_found ->
()
let find t k =
fst (find_raw t k)
let mem t k =
try
ignore(find_raw t k);
true
with Not_found ->
false
let iter f t =
Array.iteri (fun i -> function
| None -> ()
| Some (k,_h) ->
match Weak.get t.weak i with
| None -> ()
| Some v ->
f k v
) t.key
let clear t =
Weak.fill t.weak 0 (Weak.length t.weak) None;
Array.fill t.key 0 (Array.length t.key) None;
t.length <- 0
let length t =
t.length
end
module Raw = struct
type var = int
type node =
| NFalse
| NIf of node
* var
* cnode
* int
and cnode = node
* bool
module HashedIf = struct
type t = int * var * int
let equal (l1,v1,r1) (l2,v2,r2) =
l1 == l2 && r1 == r2 && v1 == v2
let hash (l,v,r) = Hashtbl.hash (l,v,r)
end
module IfHashCons = WeakHash(HashedIf)
module Int = struct
type t = int
let compare a b = b - a
end
module ISet = Set.Make(Int)
type man = {
bdd_hc : node IfHashCons.t;
bdd_hc_stamp : int ref;
and_cache : (int * int,cnode) Hashtbl.t;
xor_cache : (int * int,cnode) Hashtbl.t;
supp_cache : (int, ISet.t) Hashtbl.t;
}
let clear ctx =
IfHashCons.clear ctx.bdd_hc;
Hashtbl.clear ctx.and_cache;
Hashtbl.clear ctx.xor_cache;
Hashtbl.clear ctx.supp_cache
let flush ctx =
Hashtbl.clear ctx.and_cache;
Hashtbl.clear ctx.xor_cache;
Hashtbl.clear ctx.supp_cache
let init ?cache:(init=1002403) () = {
bdd_hc = IfHashCons.create init;
bdd_hc_stamp = ref 2;
and_cache = Hashtbl.create init;
xor_cache = Hashtbl.create init;
supp_cache = Hashtbl.create init;
}
type t = cnode
let id = function
| (NIf (_e0,_v,_e1,id), true) -> id + 1
| (NIf (_e0,_v,_e1,id), false) -> id
| (NFalse, true) -> -1
| (NFalse, false) -> -2
let hash = id
let equal t1 t2 =
match t1, t2 with
| (NFalse, a),(NFalse, b) when a == b -> true
| (NIf(_,_,_,ida), a),(NIf(_,_,_,idb), b) when ida == idb && a == b -> true
| _ -> false
let dtrue = (NFalse, true)
let dfalse = (NFalse, false)
let is_true t =
t = (NFalse, true)
let is_false t =
t = (NFalse, false)
let ident_node = function
| NFalse -> 0
| NIf(_,_,_,id) -> id
let ident_cnode = function
| (node, true) -> (ident_node node) + 1
| (node, false) -> (ident_node node)
let not_cnode cn =
let (node, inv) = cn in
(node, not inv)
let mkif_int man (e0: cnode) v (e1: cnode) : cnode =
let (inverted,e0,e1) = match e0 with
| (node, true) ->
(true, node, (not_cnode e1))
| (node, false) ->
(false, node, e1)
in
let id0 = ident_node e0 in
let id1 = ident_cnode e1 in
if id0 == id1 then
(e0,inverted)
else
let res_node = begin
let key = (id0, v, id1) in
try
IfHashCons.find man.bdd_hc key
with Not_found ->
let id = !(man.bdd_hc_stamp) in
man.bdd_hc_stamp := id + 2;
let f = NIf(e0, v, e1, id) in
IfHashCons.replace man.bdd_hc key f;
f
end in
(res_node, inverted)
let rec to_string (e,inv) =
let s = match e with
| NFalse -> "F"
| NIf(e0, v, e1, id) ->
let s0 = to_string (e0,false) in
let s1 = to_string e1 in
"("^(string_of_int v)^", "^s0^", "^s1^","^(string_of_int id)^")"
in
if inv then
if s = "F" then "T" else "~"^s
else
s
let rec to_stringb_int inv1 (e,inv2) =
let inv = inv1 <> inv2 in
match e, inv with
| NFalse, true -> "T"
| NFalse, false -> "F"
| NIf(e0, v, e1, id), _ ->
let s0 = to_stringb_int inv (e0,false) in
let s1 = to_stringb_int inv e1 in
"("^(string_of_int v)^", "^s0^", "^s1^","^(string_of_int id)^")"
let ithvar man var =
mkif_int man (NFalse,false) var (NFalse,true)
let dnot t = not_cnode t
let rec dand man t1 t2 =
match t1, t2 with
| (NFalse, false), _ -> (NFalse, false)
| (NFalse, true), _ -> t2
| _, (NFalse, false) -> (NFalse, false)
| _, (NFalse, true) -> t1
| (NIf(e0a, va, e1a, _),inva), (NIf(e0b, vb, e1b, _),invb) ->
let ida = ident_cnode t1 in
let idb = ident_cnode t2 in
if ida == idb then t1 else begin
let key = if ida < idb then (ida, idb) else (idb, ida) in
try
Hashtbl.find man.and_cache key
with Not_found ->
let e0a = (e0a,inva) in
let e1a = if inva then not_cnode e1a else e1a in
let e0b = (e0b,invb) in
let e1b = if invb then not_cnode e1b else e1b in
let c = vb - va in
let f =
if c = 0 then
mkif_int man (dand man e0a e0b) va (dand man e1a e1b)
else if c < 0 then
mkif_int man (dand man e0b t1) vb (dand man e1b t1)
else
mkif_int man (dand man e0a t2) va (dand man e1a t2)
in
Hashtbl.replace man.and_cache key f;
f
end
let rec xor man t1 t2 =
let ida = ident_cnode t1 in
let idb = ident_cnode t2 in
if ida == idb then
(NFalse, false)
else if ida == ident_cnode (dnot t2) then
(NFalse, true)
else match t1, t2 with
| (NFalse, false), other
| other, (NFalse, false) ->
other
| (NFalse, true), other
| other, (NFalse, true) ->
dnot other
| (NIf(e0a, va, e1a, _),inva), (NIf(e0b, vb, e1b, _),invb) ->
let key = if ida < idb then (ida, idb) else (idb, ida) in
try
Hashtbl.find man.xor_cache key
with Not_found ->
let e0a = (e0a,inva) in
let e1a = if inva then not_cnode e1a else e1a in
let e0b = (e0b,invb) in
let e1b = if invb then not_cnode e1b else e1b in
let c = vb - va in
let f =
if c = 0 then
mkif_int man (xor man e0a e0b) va (xor man e1a e1b)
else if c < 0 then
mkif_int man (xor man e0b t1) vb (xor man e1b t1)
else
mkif_int man (xor man e0a t2) va (xor man e1a t2)
in
Hashtbl.replace man.xor_cache key f;
f
let to_stringb t =
to_stringb_int false t
let dor man t1 t2 =
dnot (dand man (dnot t1) (dnot t2))
let nand man t1 t2 =
dnot (dand man t1 t2)
let imply man a b =
dor man (dnot a) b
let eq man a b =
dnot (xor man a b)
let nxor = eq
let ite man f var t =
let v = ithvar man var in
dand man (imply man v t) (imply man (dnot v) f)
let cnot_cnode c ((node, inv):cnode) : cnode =
(node, c != inv)
let cofactor man v t =
let visited = Hashtbl.create ((IfHashCons.length man.bdd_hc)*3/2) in
let rec cofactor = function
| (NIf(e0, vc, e1, id), inv) as node ->
if v = vc then
((e0, inv), cnot_cnode inv e1)
else if v < vc then
(node, node)
else
let r0, r1 =
try Hashtbl.find visited id
with Not_found ->
let r00, r01 = cofactor (e0, false) in
let r10, r11 = cofactor e1 in
let r0 = mkif_int man r00 vc r10 in
let r1 = mkif_int man r01 vc r11 in
let res = (r0, r1) in
Hashtbl.replace visited id res;
res
in
(cnot_cnode inv r0, cnot_cnode inv r1)
| res ->
res, res
in
cofactor t
let string_of_support s =
let b = Buffer.create 80 in
let first = ref true in
ISet.iter (fun i ->
if !first then
first := false
else
Buffer.add_string b ",";
Buffer.add_string b (string_of_int i)
) s;
Buffer.contents b
let list_of_support = ISet.elements
let support_of_list = ISet.of_list
let exists_sorted man supp t =
let visited = Hashtbl.create 1023 in
let rec exists_inner man supp (t: cnode) =
match t,supp with
| (NFalse, _), _ -> t
| _, [] -> t
| (NIf(e0, v, e1, id), inv), h::rest ->
try
Hashtbl.find visited (id,inv)
with Not_found ->
let c = h - v in
let result = if c = 0 then begin
let e0 = (e0,inv) in
let e0 = exists_inner man rest e0 in
let e1 = if inv then not_cnode e1 else e1 in
let e1 = exists_inner man rest e1 in
let e0 = not_cnode e0 in
let e1 = not_cnode e1 in
let not_res = dand man e0 e1 in
not_cnode not_res
end else if c < 0 then begin
exists_inner man rest t
end else begin
let e0 = (e0,inv) in
let e0 = exists_inner man supp e0 in
let e1 = if inv then not_cnode e1 else e1 in
let e1 = exists_inner man supp e1 in
mkif_int man e0 v e1
end
in
Hashtbl.replace visited (id,inv) result;
result
in
exists_inner man supp t
let exists man support t =
let supp = List.sort (fun a b -> a - b) support in
exists_sorted man supp t
let forall_sorted man supp t =
dnot (exists_sorted man supp (dnot t))
let forall man support t =
dnot (exists man support (dnot t))
type support = ISet.t
let sat t =
let visited = Hashtbl.create 2048 in
let rec sat inv1 (node,inv2) =
let inv = inv1 <> inv2 in
match node, inv with
| NFalse, false -> None
| NFalse, true -> Some []
| NIf(e0, v, e1, id), _ ->
try
Hashtbl.find visited (inv,id)
with Not_found ->
let res = match sat inv (e0,false) with
| Some res ->
Some ((false,v)::res)
| None ->
match sat inv e1 with
| Some res ->
Some ((true,v)::res)
| None -> None
in
Hashtbl.replace visited (inv,id) res;
res
in
sat false t
let bdd_of_cube man cube =
List.fold_left (fun cube (pos,v) ->
let v = ithvar man v in
let v = if pos then v else dnot v in
dand man cube v
) dtrue cube
let rec prime_cube man incube cube t =
match cube with
| [] -> incube
| (pos,v)::cube' ->
let p1 = bdd_of_cube man incube in
let p2 = bdd_of_cube man cube' in
let cube = dand man p1 p2 in
let f = dand man cube (dnot t) in
if is_false f then
prime_cube man incube cube' t
else
prime_cube man ((pos,v)::incube) cube' t
let prime_cube man cube t =
prime_cube man [] cube t
let prime man torig t =
match sat t with
| None -> None
| Some sat -> Some (prime_cube man sat torig)
let rec iter_satisfiability man satf f t =
match satf t with
| None -> ()
| Some sat ->
f sat;
let cube = bdd_of_cube man sat in
let blocking_clause = dnot cube in
let t = dand man blocking_clause t in
iter_satisfiability man satf f t
let all man sat t =
let res = ref [] in
iter_satisfiability man sat (fun sat -> res := sat :: !res) t;
!res
let itersat man f t = iter_satisfiability man sat f t
let allsat man t = all man sat t
let iterprime man f t = iter_satisfiability man (prime man t) f t
let allprime man t = all man (prime man t) t
let prime man t = prime man t t
type 'a e =
| False
| True
| Not of 'a
| If of 'a * var * 'a
let inspect = function
| (NFalse, false) -> False
| (NFalse, true) -> True
| (_, true) as t -> Not (dnot t)
| (NIf (e0, v, e1, _), false) ->
If ((e0, false), v, e1)
type 'a b =
| BFalse
| BTrue
| BIf of 'a * var * 'a
let inspectb = function
| (NFalse, false) -> BFalse
| (NFalse, true) -> BTrue
| (NIf (e0, v, e1, _), true) ->
BIf ((e0, true), v, (dnot e1))
| (NIf (e0, v, e1, _), false) ->
BIf ((e0, false), v, e1)
type 'a hist = (int, 'a) Hashtbl.t
let fold_init man : 'a hist =
Hashtbl.create ((IfHashCons.length man.bdd_hc)*3/2)
let rec fold_cont visited man f node =
let id = ident_cnode node in
begin try
Hashtbl.find visited id
with Not_found ->
let res = match node with
| (NFalse, false) ->
f False
| (NFalse, true) ->
f True
| (NIf(el, v, er, _), pol) ->
let rl = fold_cont visited man f (el,false) in
let rr = fold_cont visited man f er in
let r = f (If (rl, v, rr)) in
if pol then
f (Not r)
else
r
in
Hashtbl.replace visited id res;
res
end
let fold man f t =
let visited = fold_init man in
fold_cont visited man f t
let rec foldb_cont visited man f node =
let id = ident_cnode node in
begin try
Hashtbl.find visited id
with Not_found ->
let res = match node with
| (NFalse, false) ->
f BFalse
| (NFalse, true) ->
f BTrue
| (NIf(el, v, er, _), pol) ->
let rl = foldb_cont visited man f (el, pol) in
let rr = foldb_cont visited man f (if pol then dnot er else er) in
f (BIf (rl, v, rr))
in
Hashtbl.replace visited id res;
res
end
let foldb man f t =
let visited = fold_init man in
foldb_cont visited man f t
let permute man perm t =
fold man (function
| False -> dfalse
| True -> dtrue
| Not e -> dnot e
| If (l, v, r) ->
ite man l (if v < Array.length perm then perm.(v) else v) r
) t
let permutef man f t =
fold man (function
| False -> dfalse
| True -> dtrue
| Not e -> dnot e
| If (l, v, r) ->
ite man l (f v) r
) t
let support (man:man) ((node, _):t) : support =
let rec support_mem man = function
| NIf(e0, v, (e1, _), id) -> (
try
Hashtbl.find man.supp_cache id
with Not_found -> (
let supp = support_rec man e0 v e1 in
Hashtbl.add man.supp_cache id supp;
supp
)
)
| NFalse -> ISet.empty
and support_rec man e0 v e1 =
let s0 = support_mem man e0 in
let s1 = support_mem man e1 in
ISet.add v (ISet.union s0 s1)
in
support_mem man node
end
type var = int
type man = Raw.man
let clear ctx =
Raw.clear ctx
let flush ctx =
Raw.flush ctx
let init ?cache:(init=1002403) () =
Raw.init ~cache:init ()
type t = {
man: man;
node: Raw.t;
}
let manager t = t.man
let equal t1 t2 =
t1.man == t2.man &&
Raw.equal t1.node t2.node
let dtrue man = {
man = man;
node = Raw.dtrue;
}
let dfalse man = {
man = man;
node = Raw.dfalse;
}
let is_true t =
Raw.is_true t.node
let is_false t =
Raw.is_false t.node
let ithvar man var =
{ man; node = Raw.ithvar man var }
let dnot t =
{t with node = Raw.dnot t.node}
let dand t1 t2 =
let man = t1.man in
let t1 = t1.node in
let t2 = t2.node in
{ man; node = Raw.dand man t1 t2 }
let to_string t =
Raw.to_string t.node
let to_stringb t =
Raw.to_stringb t.node
let dor t1 t2 =
let man = t1.man in
let t1 = t1.node in
let t2 = t2.node in
{ man; node = Raw.dor man t1 t2 }
let nand t1 t2 =
let man = t1.man in
let t1 = t1.node in
let t2 = t2.node in
{ man; node = Raw.nand man t1 t2 }
let nxor t1 t2 =
let man = t1.man in
let t1 = t1.node in
let t2 = t2.node in
{ man; node = Raw.nxor man t1 t2 }
let eq = nxor
let xor t1 t2 =
let man = t1.man in
let t1 = t1.node in
let t2 = t2.node in
{ man; node = Raw.xor man t1 t2 }
let imply t1 t2 =
let man = t1.man in
let t1 = t1.node in
let t2 = t2.node in
{ man; node = Raw.imply man t1 t2 }
let ite f var t =
let man = f.man in
let f = f.node in
let t = t.node in
{ man; node = Raw.ite man f var t }
let cofactor v t =
let (r0, r1) = Raw.cofactor t.man v t.node in
({t with node = r0},{t with node = r1})
let support t =
Raw.support t.man t.node
let string_of_support s =
Raw.string_of_support s
let list_of_support s =
Raw.list_of_support s
let support_of_list l =
Raw.support_of_list l
let exists support t =
let supp = Raw.ISet.fold (fun a b -> a::b) support [] in
{ t with node = Raw.exists_sorted t.man supp t.node }
let forall support t =
let supp = Raw.ISet.fold (fun a b -> a::b) support [] in
{ t with node = Raw.forall_sorted t.man supp t.node }
type support = Raw.support
let sat t =
Raw.sat t.node
let prime t =
Raw.prime t.man t.node
let itersat f t = Raw.itersat t.man f t.node
let allsat t = Raw.allsat t.man t.node
let iterprime f t = Raw.iterprime t.man f t.node
let allprime t = Raw.allprime t.man t.node
type 'a e = 'a Raw.e =
| False
| True
| Not of 'a
| If of 'a * var * 'a
type 'a b = 'a Raw.b =
| BFalse
| BTrue
| BIf of 'a * var * 'a
let id t =
Raw.id t.node
let hash = id
let inspect t =
match Raw.inspect t.node with
| False -> False
| True -> True
| Not a -> Not {t with node = a}
| If (e0, v, e1) -> If ({t with node = e0}, v, {t with node = e1})
let inspectb t =
match Raw.inspectb t.node with
| BFalse -> BFalse
| BTrue -> BTrue
| BIf (e0, v, e1) -> BIf ({t with node = e0}, v, {t with node = e1})
type 'a hist = 'a Raw.hist
let fold_init man =
Raw.fold_init man
let fold_cont visited f t =
Raw.fold_cont visited t.man f t.node
let foldb_cont visited f t =
Raw.foldb_cont visited t.man f t.node
let fold f t =
Raw.fold t.man f t.node
let foldb f t =
Raw.foldb t.man f t.node
let permute perm t =
{ t with node = Raw.permute t.man perm t.node }
let permutef f t =
{ t with node = Raw.permutef t.man f t.node }