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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
open Format
open Options
module E = Expr
module Atom = Satml_types.Atom
module FF = Satml_types.Flat_Formula
open Atom
module Ex = Explanation
exception Sat
exception Unsat of clause list option
exception Last_UIP_reason of Atom.Set.t
exception Restart
exception Stopped
type conflict_origin =
| C_none
| C_bool of clause
| C_theory of Ex.t
let vraie_form = E.vrai
module type SAT_ML = sig
type th
type t
val solve : t -> unit
val set_new_proxies :
t -> (Atom.atom * Atom.atom list * bool) Util.MI.t -> unit
val new_vars :
t ->
nbv : int ->
var list ->
atom list list -> atom list list ->
atom list list * atom list list
val assume :
t ->
Atom.atom list list -> Atom.atom list list -> E.t ->
cnumber : int ->
Atom.atom option FF.Map.t -> dec_lvl:int ->
unit
val boolean_model : t -> Atom.atom list
val instantiation_context :
t -> FF.hcons_env -> Satml_types.Atom.Set.t
val current_tbox : t -> th
val set_current_tbox : t -> th -> unit
val empty : unit -> t
val reset_steps : unit -> unit
val get_steps : unit -> int64
val assume_th_elt : t -> Expr.th_elt -> Explanation.t -> unit
val decision_level : t -> int
val cancel_until : t -> int -> unit
val update_lazy_cnf :
t ->
do_bcp : bool ->
Atom.atom option FF.Map.t -> dec_lvl:int -> unit
val exists_in_lazy_cnf : t -> FF.t -> bool
val known_lazy_formulas : t -> int FF.Map.t
val reason_of_deduction: Atom.atom -> Atom.Set.t
val assume_simple : t -> Atom.atom list list -> unit
val decide : t -> Atom.atom -> unit
val conflict_analyze_and_fix : t -> conflict_origin -> unit
end
module MFF = FF.Map
module SFF = FF.Set
module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct
module Matoms = Atom.Map
type th = Th.t
type t =
{
mutable is_unsat : bool;
mutable unsat_core : clause list option;
mutable clauses : clause Vec.t;
mutable learnts : clause Vec.t;
mutable clause_inc : float;
mutable var_inc : float;
mutable vars : var Vec.t;
mutable trail : atom Vec.t;
mutable trail_lim : int Vec.t;
mutable qhead : int;
mutable simpDB_assigns : int;
mutable simpDB_props : int;
mutable order : Iheap.t;
mutable progress_estimate : float;
remove_satisfied : bool;
var_decay : float;
clause_decay : float;
mutable restart_first : int;
restart_inc : float;
mutable learntsize_factor : float;
learntsize_inc : float;
expensive_ccmin : bool;
polarity_mode : bool;
mutable starts : int;
mutable decisions : int;
mutable propagations : int;
mutable conflicts : int;
mutable clauses_literals : int;
mutable learnts_literals : int;
mutable max_literals : int;
mutable tot_literals : int;
mutable nb_init_vars : int;
mutable nb_init_clauses : int;
mutable model : var Vec.t;
mutable tenv : Th.t;
mutable unit_tenv : Th.t;
mutable tenv_queue : Th.t Vec.t;
mutable tatoms_queue : atom Queue.t;
mutable th_tableaux : atom Queue.t;
mutable cpt_current_propagations : int;
mutable proxies : (Atom.atom * Atom.atom list * bool) Util.MI.t;
mutable lazy_cnf :
(FF.t list MFF.t * FF.t) Matoms.t;
lazy_cnf_queue :
(FF.t list MFF.t * FF.t) Matoms.t Vec.t;
mutable relevants : SFF.t;
relevants_queue : SFF.t Vec.t;
mutable ff_lvl : int MFF.t;
mutable lvl_ff : SFF.t Util.MI.t;
}
exception Conflict of clause
let steps = ref 0L
let reset_steps () = steps := 0L
let get_steps () = !steps
let empty () =
{
is_unsat = false;
unsat_core = None;
clauses = Vec.make 0 Atom.dummy_clause;
learnts = Vec.make 0 Atom.dummy_clause;
clause_inc = 1.;
var_inc = 1.;
vars = Vec.make 0 dummy_var;
trail = Vec.make 601 dummy_atom;
trail_lim = Vec.make 601 (-105);
qhead = 0;
simpDB_assigns = -1;
simpDB_props = 0;
order = Iheap.init 0;
progress_estimate = 0.;
remove_satisfied = true;
var_decay = 1. /. 0.95;
clause_decay = 1. /. 0.999;
restart_first = 100;
restart_inc = 1.5;
learntsize_factor = 1. /. 3. ;
learntsize_inc = 1.1;
expensive_ccmin = true;
polarity_mode = false;
starts = 0;
decisions = 0;
propagations = 0;
conflicts = 0;
clauses_literals = 0;
learnts_literals = 0;
max_literals = 0;
tot_literals = 0;
nb_init_vars = 0;
nb_init_clauses = 0;
model = Vec.make 0 dummy_var;
tenv = Th.empty();
unit_tenv = Th.empty();
tenv_queue = Vec.make 100 (Th.empty());
tatoms_queue = Queue.create ();
th_tableaux = Queue.create ();
cpt_current_propagations = 0;
proxies = Util.MI.empty;
lazy_cnf = Matoms.empty;
lazy_cnf_queue =
Vec.make 100
(Matoms.singleton (faux_atom) (MFF.empty, FF.faux));
relevants = SFF.empty;
relevants_queue = Vec.make 100 (SFF.singleton (FF.faux));
ff_lvl = MFF.empty;
lvl_ff = Util.MI.empty;
}
let f_weight env i j =
(Stdlib.compare
(Vec.get env.vars j).weight (Vec.get env.vars i).weight) < 0
let insert_var_order env v =
Iheap.insert (f_weight env) env.order v.vid
let var_decay_activity env = env.var_inc <- env.var_inc *. env.var_decay
let clause_decay_activity env =
env.clause_inc <- env.clause_inc *. env.clause_decay
let var_bump_activity env v =
v.weight <- v.weight +. env.var_inc;
if (Stdlib.compare v.weight 1e100) > 0 then begin
for i = 0 to env.vars.Vec.sz - 1 do
(Vec.get env.vars i).weight <- (Vec.get env.vars i).weight *. 1e-100
done;
env.var_inc <- env.var_inc *. 1e-100;
end;
if Iheap.in_heap env.order v.vid then
Iheap.decrease (f_weight env) env.order v.vid
let clause_bump_activity env c =
c.activity <- c.activity +. env.clause_inc;
if (Stdlib.compare c.activity 1e20) > 0 then begin
for i = 0 to env.learnts.Vec.sz - 1 do
(Vec.get env.learnts i).activity <-
(Vec.get env.learnts i).activity *. 1e-20;
done;
env.clause_inc <- env.clause_inc *. 1e-20
end
let decision_level env = Vec.size env.trail_lim
let nb_assigns env = Vec.size env.trail
let nb_clauses env = Vec.size env.clauses
let nb_vars env = Vec.size env.vars
let new_decision_level env =
env.decisions <- env.decisions + 1;
Vec.push env.trail_lim (Vec.size env.trail);
if Options.profiling() then
Profiling.decision (decision_level env) "<none>";
Vec.push env.tenv_queue env.tenv;
if Options.cdcl_tableaux () then begin
Vec.push env.lazy_cnf_queue env.lazy_cnf;
Vec.push env.relevants_queue env.relevants
end
let attach_clause env c =
Vec.push (Vec.get c.atoms 0).neg.watched c;
Vec.push (Vec.get c.atoms 1).neg.watched c;
if c.learnt then
env.learnts_literals <- env.learnts_literals + Vec.size c.atoms
else
env.clauses_literals <- env.clauses_literals + Vec.size c.atoms
let detach_clause env c =
c.removed <- true;
if c.learnt then
env.learnts_literals <- env.learnts_literals - Vec.size c.atoms
else
env.clauses_literals <- env.clauses_literals - Vec.size c.atoms
let remove_clause env c = detach_clause env c
let satisfied c =
try
for i = 0 to Vec.size c.atoms - 1 do
let a = Vec.get c.atoms i in
if a.is_true && a.var.level ==0 then raise Exit
done;
false
with Exit -> true
let unassign_atom a =
a.is_true <- false;
a.neg.is_true <- false;
a.timp <- 0;
a.neg.timp <- 0;
a.var.level <- -1;
a.var.index <- -1;
a.var.reason <- None;
a.var.vpremise <- []
let enqueue_assigned env a =
assert (a.is_true || a.neg.is_true);
if a.timp = 1 then begin
a.timp <- -1;
a.neg.timp <- -1
end;
assert (a.var.level >= 0);
Vec.push env.trail a
let cancel_ff_lvls_until env lvl =
for i = decision_level env downto lvl + 1 do
try
let s = Util.MI.find i env.lvl_ff in
SFF.iter (fun f' -> env.ff_lvl <- MFF.remove f' env.ff_lvl) s;
env.lvl_ff <- Util.MI.remove i env.lvl_ff;
with Not_found -> ()
done
let cancel_until env lvl =
cancel_ff_lvls_until env lvl;
let repush = ref [] in
if decision_level env > lvl then begin
env.qhead <- Vec.get env.trail_lim lvl;
for c = Vec.size env.trail - 1 downto env.qhead do
let a = Vec.get env.trail c in
if Options.minimal_bj () && a.var.level <= lvl then begin
assert (a.var.level = 0 || a.var.reason != None);
repush := a :: !repush
end
else begin
unassign_atom a;
insert_var_order env a.var
end
done;
Queue.clear env.tatoms_queue;
Queue.clear env.th_tableaux;
env.tenv <- Vec.get env.tenv_queue lvl;
if Options.cdcl_tableaux () then begin
env.lazy_cnf <- Vec.get env.lazy_cnf_queue lvl;
env.relevants <- Vec.get env.relevants_queue lvl;
end;
Vec.shrink env.trail ((Vec.size env.trail) - env.qhead) true;
Vec.shrink env.trail_lim ((Vec.size env.trail_lim) - lvl) true;
Vec.shrink env.tenv_queue ((Vec.size env.tenv_queue) - lvl) true;
if Options.cdcl_tableaux () then begin
Vec.shrink
env.lazy_cnf_queue ((Vec.size env.lazy_cnf_queue) - lvl) true;
Vec.shrink env.relevants_queue
((Vec.size env.relevants_queue) - lvl) true
[@ocaml.ppwarning "TODO: try to disable 'fill_with_dummy'"]
end;
(try
let last_dec =
if Vec.size env.trail_lim = 0 then 0 else Vec.last env.trail_lim in
env.cpt_current_propagations <- (Vec.size env.trail) - last_dec
with _ -> assert false
);
end;
if Options.profiling() then Profiling.reset_dlevel (decision_level env);
assert (Vec.size env.trail_lim = Vec.size env.tenv_queue);
assert (Options.minimal_bj () || (!repush == []));
List.iter (enqueue_assigned env) !repush
let rec pick_branch_var env =
if Iheap.size env.order = 0 then raise Sat;
let max = Iheap.remove_min (f_weight env) env.order in
let v = Vec.get env.vars max in
if v.level>= 0 then begin
assert (v.pa.is_true || v.na.is_true);
pick_branch_var env
end
else v
let pick_branch_lit env =
let v = pick_branch_var env in
v.na
let debug_enqueue_level a lvl reason =
match reason with
| None -> ()
| Some c ->
let maxi = ref min_int in
for i = 0 to Vec.size c.atoms - 1 do
let b = Vec.get c.atoms i in
if not (eq_atom a b) then maxi := max !maxi b.var.level
done;
assert (!maxi = lvl)
let max_level_in_clause c =
let max_lvl = ref 0 in
Vec.iter c.atoms (fun a ->
max_lvl := max !max_lvl a.var.level);
!max_lvl
let enqueue env a lvl reason =
assert (not a.is_true && not a.neg.is_true &&
a.var.level < 0 && a.var.reason == None && lvl >= 0);
a.is_true <- true;
a.var.level <- lvl;
a.var.reason <- reason;
Vec.push env.trail a;
a.var.index <- Vec.size env.trail;
if Options.enable_assertions() then debug_enqueue_level a lvl reason
let progress_estimate env =
let prg = ref 0. in
let nbv = to_float (nb_vars env) in
let lvl = decision_level env in
let _F = 1. /. nbv in
for i = 0 to lvl do
let _beg = if i = 0 then 0 else Vec.get env.trail_lim (i-1) in
let _end =
if i=lvl then Vec.size env.trail
else Vec.get env.trail_lim i in
prg := !prg +. _F**(to_float i) *. (to_float (_end - _beg))
done;
!prg /. nbv
let check_levels propag_lvl current_lvl =
assert (propag_lvl <= current_lvl);
assert (propag_lvl == current_lvl || (Options.minimal_bj ()))
let best_propagation_level env c =
let mlvl =
if Options.minimal_bj () then max_level_in_clause c
else decision_level env
in
check_levels mlvl (decision_level env);
mlvl
let propagate_in_clause env a c i watched new_sz =
let atoms = c.atoms in
let first = Vec.get atoms 0 in
if first == a.neg then begin
Vec.set atoms 0 (Vec.get atoms 1);
Vec.set atoms 1 first
end;
let first = Vec.get atoms 0 in
if first.is_true then begin
Vec.set watched !new_sz c;
incr new_sz;
if Options.profiling() then Profiling.elim true;
end
else
try
for k = 2 to Vec.size atoms - 1 do
let ak = Vec.get atoms k in
if not (ak.neg.is_true) then begin
Vec.set atoms 1 ak;
Vec.set atoms k a.neg;
Vec.push ak.neg.watched c;
raise Exit
end
done;
if first.neg.is_true then begin
env.qhead <- Vec.size env.trail;
for k = i to Vec.size watched - 1 do
Vec.set watched !new_sz (Vec.get watched k);
incr new_sz;
done;
if Options.profiling() then Profiling.bcp_conflict true true;
raise (Conflict c)
end
else begin
Vec.set watched !new_sz c;
incr new_sz;
let mlvl = best_propagation_level env c in
enqueue env first mlvl (Some c);
if Options.profiling() then Profiling.red true;
end
with Exit -> ()
let propagate_atom env a res =
let watched = a.watched in
let new_sz_w = ref 0 in
begin
try
for i = 0 to Vec.size watched - 1 do
let c = Vec.get watched i in
if not c.removed then propagate_in_clause env a c i watched new_sz_w
done;
with Conflict c -> assert (!res == C_none); res := C_bool c
end;
let dead_part = Vec.size watched - !new_sz_w in
Vec.shrink watched dead_part true
let do_case_split env origin =
if Options.case_split_policy () != Util.AfterTheoryAssume then
failwith
"Only AfterTheoryAssume case-split policy is supported by satML";
if Options.case_split_policy () == origin then
try
let tenv, _ = Th.do_case_split env.tenv in
env.tenv <- tenv;
C_none
with Ex.Inconsistent (expl, _) ->
C_theory expl
else C_none
module SA = Atom.Set
let get_atom_or_proxy f proxies =
let open FF in
match view f with
| UNIT a -> a
| _ ->
match get_proxy_of f proxies with
| Some a -> a
| None -> assert false
let add_form_to_lazy_cnf =
let open FF in
let add_disj env ma f_a l =
List.fold_left
(fun ma fchild ->
let child = get_atom_or_proxy fchild env.proxies in
let ctt =
try Matoms.find child ma |> fst with Not_found -> MFF.empty
in
Matoms.add child (MFF.add f_a l ctt, fchild) ma
)ma l
in
let rec add_aux env ma (f_a : t) =
if SFF.mem f_a env.relevants then ma
else
begin
env.relevants <- SFF.add f_a env.relevants;
match view f_a with
| UNIT a ->
Queue.push a env.th_tableaux;
ma
| AND l ->
List.fold_left (add_aux env) ma l
| OR l ->
match Lists.find_opt (fun e ->
let p = get_atom_or_proxy e env.proxies in
p.is_true) l
with
| None -> add_disj env ma f_a l
| Some e -> add_aux env ma e
end
in
fun env ma f_a -> add_aux env ma f_a
let relevancy_propagation env ma a =
try
let parents, f_a = Matoms.find a ma in
let ma = Matoms.remove a ma in
let ma =
MFF.fold
(fun fp lp ma ->
List.fold_left
(fun ma bf ->
let b = get_atom_or_proxy bf env.proxies in
if eq_atom a b then ma
else
let mf_b, fb =
try Matoms.find b ma with Not_found -> assert false in
assert (FF.equal bf fb);
let mf_b = MFF.remove fp mf_b in
if MFF.is_empty mf_b then Matoms.remove b ma
else Matoms.add b (mf_b, fb) ma
)ma lp
)parents ma
in
assert (let a = get_atom_or_proxy f_a env.proxies in a.is_true);
add_form_to_lazy_cnf env ma f_a
with Not_found -> ma
let compute_facts_for_theory_propagate env =
env.lazy_cnf <-
Queue.fold (relevancy_propagation env) env.lazy_cnf env.tatoms_queue;
if Options.enable_assertions() then
Matoms.iter (fun a _ -> assert (not a.is_true)) env.lazy_cnf
let _expensive_theory_propagate () = None
let unit_theory_propagate env _full_q lazy_q =
let facts =
Queue.fold
(fun acc ta ->
assert (ta.is_true);
assert (ta.var.level >= 0);
if ta.var.level = 0 then
(ta.lit, Ex.empty, 0, env.cpt_current_propagations) :: acc
else acc
)[] lazy_q
in
if facts == [] then C_none
else
try
let t,_,cpt =
Th.assume ~ordered:false
(List.rev facts) env.unit_tenv
in
steps := Int64.add (Int64.of_int cpt) !steps;
if steps_bound () <> -1
&& Int64.compare !steps (Int64.of_int (steps_bound ())) > 0 then
begin
printf "Steps limit reached: %Ld@." !steps;
exit 1
end;
env.unit_tenv <- t;
C_none
with Ex.Inconsistent (dep, _terms) ->
if Options.profiling() then Profiling.theory_conflict();
C_theory dep
let theory_propagate env =
let facts = ref [] in
let dlvl = decision_level env in
if Options.cdcl_tableaux () then
compute_facts_for_theory_propagate env;
let tatoms_queue =
if Options.cdcl_tableaux_th () then begin
env.th_tableaux
end
else env.tatoms_queue
in
match unit_theory_propagate env env.tatoms_queue tatoms_queue with
| C_theory _ as res -> res
| C_bool _ -> assert false
| C_none ->
while not (Queue.is_empty tatoms_queue) do
let a = Queue.pop tatoms_queue in
let ta =
if a.is_true then a
else if a.neg.is_true then a.neg
else assert false
in
let ex =
if unsat_core () || ta.var.level > 0 then Ex.singleton (Ex.Literal ta)
else Ex.empty
in
assert (E.is_ground ta.lit);
let th_imp =
if ta.timp = -1 then
let lit = Atom.literal a in
match Th.query lit env.tenv with
| Some _ ->
a.timp <- 1;
a.neg.timp <- 1;
true
| None ->
false
else
ta.timp = 1
in
if not th_imp then
facts := (ta.lit, ex, dlvl,env.cpt_current_propagations) :: !facts;
env.cpt_current_propagations <- env.cpt_current_propagations + 1
done;
Queue.clear env.tatoms_queue;
Queue.clear env.th_tableaux;
if !facts == [] then C_none
else
try
let t,_,cpt =
Th.assume ~ordered:(not (Options.cdcl_tableaux_th ()))
(List.rev !facts) env.tenv
in
steps := Int64.add (Int64.of_int cpt) !steps;
if steps_bound () <> -1
&& Int64.compare !steps (Int64.of_int (steps_bound ())) > 0 then
begin
printf "Steps limit reached: %Ld@." !steps;
exit 1
end;
env.tenv <- t;
do_case_split env Util.AfterTheoryAssume
with Ex.Inconsistent (dep, _terms) ->
if Options.profiling() then Profiling.theory_conflict();
C_theory dep
let propagate env =
let num_props = ref 0 in
let res = ref C_none in
while env.qhead < Vec.size env.trail do
let a = Vec.get env.trail env.qhead in
env.qhead <- env.qhead + 1;
incr num_props;
propagate_atom env a res;
Queue.push a env.tatoms_queue;
done;
env.propagations <- env.propagations + !num_props;
env.simpDB_props <- env.simpDB_props - !num_props;
!res
let reduce_db () = ()
let remove_satisfied env vec =
let j = ref 0 in
let k = Vec.size vec - 1 in
for i = 0 to k do
let c = Vec.get vec i in
if satisfied c then remove_clause env c
else begin
Vec.set vec !j (Vec.get vec i);
incr j
end
done;
Vec.shrink vec (k + 1 - !j) true
module HUC = Hashtbl.Make
(struct type t = clause let equal = (==) let hash = Hashtbl.hash end)
let report_b_unsat env linit =
if not (Options.unsat_core ()) then begin
env.is_unsat <- true;
env.unsat_core <- None;
raise (Unsat None)
end
else
match linit with
| [] | _::_::_ ->
assert false
| [{ atoms; _ }] ->
assert (Options.unsat_core ());
let l = ref linit in
for i = 0 to Vec.size atoms - 1 do
let v = (Vec.get atoms i).var in
l := List.rev_append v.vpremise !l;
match v.reason with None -> () | Some c -> l := c :: !l
done;
if false then begin
eprintf "@.>>UNSAT Deduction made from:@.";
List.iter
(fun hc ->
eprintf " %a@." Atom.pr_clause hc
)!l;
end;
let uc = HUC.create 17 in
let rec roots todo =
match todo with
| [] -> ()
| c::r ->
for i = 0 to Vec.size c.atoms - 1 do
let v = (Vec.get c.atoms i).var in
if not v.seen then begin
v.seen <- true;
roots v.vpremise;
match v.reason with None -> () | Some r -> roots [r];
end
done;
match c.cpremise with
| [] -> if not (HUC.mem uc c) then HUC.add uc c (); roots r
| prems -> roots prems; roots r
in roots !l;
let unsat_core = HUC.fold (fun c _ l -> c :: l) uc [] in
if false then begin
eprintf "@.>>UNSAT_CORE:@.";
List.iter
(fun hc ->
eprintf " %a@." Atom.pr_clause hc
)unsat_core;
end;
env.is_unsat <- true;
let unsat_core = Some unsat_core in
env.unsat_core <- unsat_core;
raise (Unsat unsat_core)
let report_t_unsat env dep =
if not (Options.unsat_core ()) then begin
env.is_unsat <- true;
env.unsat_core <- None;
raise (Unsat None)
end
else
let l =
Ex.fold_atoms
(fun ex l ->
match ex with
| Ex.Literal { var = v; _ } ->
let l = List.rev_append v.vpremise l in
begin match v.reason with
| None -> l
| Some c -> c :: l
end
| _ -> assert false
) dep []
in
if false then begin
eprintf "@.>>T-UNSAT Deduction made from:@.";
List.iter
(fun hc ->
eprintf " %a@." Atom.pr_clause hc
)l;
end;
let uc = HUC.create 17 in
let rec roots todo =
match todo with
| [] -> ()
| c::r ->
for i = 0 to Vec.size c.atoms - 1 do
let v = (Vec.get c.atoms i).var in
if not v.seen then begin
v.seen <- true;
roots v.vpremise;
match v.reason with None -> () | Some r -> roots [r];
end
done;
match c.cpremise with
| [] -> if not (HUC.mem uc c) then HUC.add uc c (); roots r
| prems -> roots prems; roots r
in roots l;
let unsat_core = HUC.fold (fun c _ l -> c :: l) uc [] in
if false then begin
eprintf "@.>>T-UNSAT_CORE:@.";
List.iter
(fun hc ->
eprintf " %a@." Atom.pr_clause hc
) unsat_core;
end;
env.is_unsat <- true;
let unsat_core = Some unsat_core in
env.unsat_core <- unsat_core;
raise (Unsat unsat_core)
let all_propagations env =
match propagate env with
| C_bool c -> C_bool c
| C_theory _ -> assert false
| C_none ->
if Options.tableaux_cdcl () then
C_none
else
match theory_propagate env with
| C_bool _ -> assert false
| C_theory dep -> C_theory dep
| C_none -> C_none
let report_conflict env c =
match c with
| C_bool confl -> report_b_unsat env [confl]
| C_theory dep -> report_t_unsat env dep
| C_none -> ()
let simplify env =
assert (decision_level env = 0);
if env.is_unsat then raise (Unsat env.unsat_core);
report_conflict env (all_propagations env);
if nb_assigns env <> env.simpDB_assigns && env.simpDB_props <= 0 then begin
if debug () then fprintf fmt "simplify@.";
if Vec.size env.learnts > 0 then remove_satisfied env env.learnts;
if env.remove_satisfied then remove_satisfied env env.clauses;
env.simpDB_assigns <- nb_assigns env;
env.simpDB_props <- env.clauses_literals + env.learnts_literals;
end
let record_learnt_clause env ~is_T_learn blevel learnt history size =
let curr_level = decision_level env in
if not is_T_learn || Options.minimal_bj () ||
blevel = curr_level then begin
check_levels blevel curr_level;
match learnt with
| [] -> assert false
| [fuip] ->
fuip.var.vpremise <- history;
enqueue env fuip 0 None
| fuip :: _ ->
let name = fresh_lname () in
let lclause = make_clause name learnt vraie_form size true history in
Vec.push env.learnts lclause;
attach_clause env lclause;
clause_bump_activity env lclause;
let propag_lvl = best_propagation_level env lclause in
enqueue env fuip propag_lvl (Some lclause)
end;
if not is_T_learn then begin
var_decay_activity env;
clause_decay_activity env
end
let conflict_analyze_aux env c_clause max_lvl =
let pathC = ref 0 in
let learnt = ref SA.empty in
let cond = ref true in
let blevel = ref 0 in
let seen = ref [] in
let c = ref c_clause in
let tr_ind = ref (Vec.size env.trail -1) in
let history = ref [] in
while !cond do
if !c.learnt then clause_bump_activity env !c;
history := !c :: !history;
Vec.iter !c.atoms (fun a ->
assert (a.is_true || a.neg.is_true && a.var.level >= 0);
if not a.var.seen && a.var.level > 0 then begin
var_bump_activity env a.var;
a.var.seen <- true;
seen := a :: !seen;
if a.var.level >= max_lvl then incr pathC
else begin
learnt := SA.add a !learnt;
blevel := max !blevel a.var.level
end
end
);
while assert (!tr_ind >= 0);
let v = (Vec.get env.trail !tr_ind).var in
not v.seen || ((Options.minimal_bj ()) && v.level < max_lvl) do
decr tr_ind
done;
decr pathC;
let p = Vec.get env.trail !tr_ind in
decr tr_ind;
match !pathC,p.var.reason with
| 0, _ ->
cond := false;
learnt := SA.add p.neg !learnt
| _, None -> assert false
| _, Some cl -> c := cl
done;
List.iter (fun q -> q.var.seen <- false) !seen;
let learnt = SA.elements !learnt in
let learnt = List.fast_sort (fun a b -> b.var.level - a.var.level) learnt in
let size = List.length learnt in
let bj_level =
if Options.minimal_bj () then
match learnt with
[] -> 0
| a :: _ -> max 0 (a.var.level - 1)
else !blevel
in
bj_level, learnt, !history, size
let fixable_with_simple_backjump confl max_lvl lv =
if not (Options.minimal_bj ()) then None
else
try
let max_v = ref None in
let snd_max = ref (-1) in
List.iter
(fun v ->
let lvl = v.level in
if lvl == max_lvl then begin
if !max_v != None then raise Exit;
max_v := Some v
end
else begin
assert (lvl < max_lvl);
snd_max := max !snd_max lvl
end
)lv;
match !max_v with
| None -> assert false
| Some v ->
let snd_max = !snd_max in
assert (snd_max >= 0);
assert (snd_max < max_lvl);
assert (not confl.removed);
let a = if v.pa.is_true then v.na else v.pa in
assert (a.neg.is_true);
assert (max_lvl > 0);
Some (a, max_lvl - 1, snd_max)
with Exit -> None
let conflict_analyze_and_fix env confl =
env.conflicts <- env.conflicts + 1;
if decision_level env = 0 then report_conflict env confl;
match confl with
| C_none -> assert false
| C_theory dep ->
let atoms, sz, max_lvl, c_hist =
Ex.fold_atoms
(fun ex (acc, sz, max_lvl, c_hist) ->
match ex with
| Ex.Literal a ->
let c_hist = List.rev_append a.var.vpremise c_hist in
let c_hist = match a.var.reason with
| None -> c_hist | Some r -> r:: c_hist
in
if a.var.level = 0 then acc, sz, max_lvl, c_hist
else a.neg :: acc, sz + 1, max max_lvl a.var.level, c_hist
| _ -> assert false
) dep ([], 0, 0, [])
in
if atoms == [] || max_lvl == 0 then begin
report_t_unsat env dep
end;
let name = fresh_dname() in
let c = make_clause name atoms vraie_form sz false c_hist in
c.removed <- true;
let blevel, learnt, history, size = conflict_analyze_aux env c max_lvl in
cancel_until env blevel;
record_learnt_clause env ~is_T_learn:false blevel learnt history size
| C_bool c ->
let max_lvl = ref 0 in
let lv = ref [] in
Vec.iter c.atoms (fun a ->
max_lvl := max !max_lvl a.var.level;
lv := a.var :: !lv
);
if !max_lvl == 0 then report_b_unsat env [c];
match fixable_with_simple_backjump c !max_lvl !lv with
| None ->
let blevel, learnt, history, size =
conflict_analyze_aux env c !max_lvl in
cancel_until env blevel;
record_learnt_clause env ~is_T_learn:false blevel learnt history size
| Some (a, blevel, propag_lvl) ->
assert (a.neg.is_true);
cancel_until env blevel;
assert (not a.neg.is_true);
assert (propag_lvl >= 0 && propag_lvl <= blevel);
enqueue env a propag_lvl (Some c)
let _check_inconsistence_of _ = ()
type strat =
| Auto
| Stop
| Interactive of Atom.atom
let find_uip_reason q =
let res = ref SA.empty in
let seen = ref SA.empty in
while not (Queue.is_empty q) do
let a = Queue.pop q in
if not (SA.mem a !seen) then begin
seen := SA.add a !seen;
match a.var.reason with
| None when a.var.level = 0 -> ()
| None ->
assert (a.is_true || a.neg.is_true);
res := SA.add (if a.is_true then a else a.neg) !res
| Some r ->
Vec.iter r.atoms
(fun a -> if not (SA.mem a !seen) then Queue.push a q)
end
done;
raise (Last_UIP_reason !res)
let reason_of_deduction true_atom =
let q = Queue.create () in
Queue.push true_atom q;
try find_uip_reason q
with Last_UIP_reason r -> r
let reason_of_conflict confl_clause =
let q = Queue.create () in
Vec.iter confl_clause.atoms (fun a -> Queue.push a q);
find_uip_reason q
let rec propagate_and_stabilize env propagator conflictC strat =
match propagator env with
| C_none -> ()
| (C_bool _ | C_theory _ ) as confl ->
let x =
match strat, confl with
| Auto, _ -> None
| _, C_bool confl ->
(try reason_of_conflict confl
with Last_UIP_reason r-> Some r)
| _ -> assert false
in
try
incr conflictC;
conflict_analyze_and_fix env confl;
propagate_and_stabilize env propagator conflictC strat;
if Options.tableaux_cdcl () then
match x with
| None -> ()
| Some r -> raise (Last_UIP_reason r)
with
Unsat _ as e ->
if Options.tableaux_cdcl () then begin
if not (Options.minimal_bj ()) then assert (decision_level env = 0);
raise (Last_UIP_reason Atom.Set.empty)
end
else raise e
let clause_of_dep d fuip =
let cpt = ref 0 in
let l =
Ex.fold_atoms
(fun e acc ->
match e with
| Ex.Literal a ->
incr cpt;
a.neg :: acc
| _ -> assert false
)d []
in
fuip :: l, !cpt + 1
let th_entailed tenv a =
if Options.no_tcp () || not (Options.minimal_bj ()) then None
else
let lit = Atom.literal a in
match Th.query lit tenv with
| Some (d,_) ->
a.timp <- 1;
Some (clause_of_dep d a)
| None ->
match Th.query (E.neg lit) tenv with
| Some (d,_) ->
a.neg.timp <- 1;
Some (clause_of_dep d a.Atom.neg)
| None -> None
let search env strat n_of_conflicts n_of_learnts =
let conflictC = ref 0 in
env.starts <- env.starts + 1;
while true do
propagate_and_stabilize env all_propagations conflictC !strat;
if nb_assigns env = env.nb_init_vars ||
(Options.cdcl_tableaux_inst () && Matoms.is_empty env.lazy_cnf) then
raise Sat;
if Options.enable_restarts ()
&& n_of_conflicts >= 0 && !conflictC >= n_of_conflicts then begin
env.progress_estimate <- progress_estimate env;
cancel_until env 0;
raise Restart
end;
if decision_level env = 0 then simplify env;
if n_of_learnts >= 0 &&
Vec.size env.learnts - nb_assigns env >= n_of_learnts then
reduce_db();
let next =
match !strat with
| Auto -> pick_branch_lit env
| Stop -> raise Stopped
| Interactive f ->
strat := Stop; f
in
match th_entailed env.tenv next with
| None ->
new_decision_level env;
let current_level = decision_level env in
env.cpt_current_propagations <- 0;
assert (next.var.level < 0);
enqueue env next current_level None
| Some(c,sz) ->
record_learnt_clause env ~is_T_learn:true (decision_level env) c [] sz
done
let solve env =
if env.is_unsat then raise (Unsat env.unsat_core);
let n_of_conflicts = ref (to_float env.restart_first) in
let n_of_learnts =
ref ((to_float (nb_clauses env)) *. env.learntsize_factor) in
try
while true do
(try search env (ref Auto)
(to_int !n_of_conflicts) (to_int !n_of_learnts);
with Restart -> ());
n_of_conflicts := !n_of_conflicts *. env.restart_inc;
n_of_learnts := !n_of_learnts *. env.learntsize_inc;
done;
with
| Sat ->
remove_satisfied env env.clauses;
remove_satisfied env env.learnts;
raise Sat
| (Unsat _) as e ->
raise e
exception Trivial
let partition atoms init =
let rec partition_aux trues unassigned falses init = function
| [] -> trues @ unassigned @ falses, init
| a::r ->
if a.is_true then
if a.var.level = 0 then raise Trivial
else (a::trues) @ unassigned @ falses @ r, init
else if a.neg.is_true then
if a.var.level = 0 then
partition_aux trues unassigned falses
(List.rev_append (a.var.vpremise) init) r
else partition_aux trues unassigned (a::falses) init r
else partition_aux trues (a::unassigned) falses init r
in
partition_aux [] [] [] init atoms
let add_clause env f ~cnumber atoms =
if env.is_unsat then raise (Unsat env.unsat_core);
let init_name = string_of_int cnumber in
let init0 =
if Options.unsat_core () then
[make_clause init_name atoms f (List.length atoms) false []]
else
[]
in
try
let atoms, init =
if decision_level env = 0 then
let atoms, init = List.fold_left
(fun (atoms, init) a ->
if a.is_true then raise Trivial;
if a.neg.is_true then begin
if Options.profiling() then Profiling.red true;
atoms, (List.rev_append (a.var.vpremise) init)
end
else a::atoms, init
) ([], init0) atoms in
List.fast_sort (fun a b -> a.var.vid - b.var.vid) atoms, init
else partition atoms init0
in
let size = List.length atoms in
match atoms with
| [] ->
report_b_unsat env init0;
| a::b::_ ->
let name = fresh_name () in
let clause = make_clause name atoms vraie_form size false init in
attach_clause env clause;
Vec.push env.clauses clause;
if debug_sat () && verbose () then
fprintf fmt "[satML] add_clause: %a@." Atom.pr_clause clause;
if a.neg.is_true then begin
let lvl = List.fold_left (fun m a -> max m a.var.level) 0 atoms in
cancel_until env lvl;
conflict_analyze_and_fix env (C_bool clause)
end
else
if not a.is_true && b.neg.is_true then begin
let mlvl = best_propagation_level env clause in
enqueue env a mlvl (Some clause);
end
[@ocaml.ppwarning "TODO: add a heavy assert that checks \
that clauses are not redundant, watchs \
are well set, unit and bottom are \
detected ..."]
| [a] ->
if debug_sat () && verbose () then
fprintf fmt "[satML] add_atom: %a@." Atom.pr_atom a;
let lvl = a.var.level in
assert (lvl <> 0);
begin
if not (minimal_bj ()) then cancel_until env 0
else if a.is_true || a.neg.is_true then cancel_until env (lvl - 1)
end;
a.var.vpremise <- init;
enqueue env a 0 None;
propagate_and_stabilize env propagate (ref 0) Auto
with Trivial ->
if Options.profiling() then Profiling.elim true
let update_lazy_cnf env ~do_bcp mff ~dec_lvl =
if Options.cdcl_tableaux () && dec_lvl <= decision_level env then begin
let s =
try Util.MI.find dec_lvl env.lvl_ff
with Not_found -> SFF.empty
in
let lz, s =
MFF.fold (fun ff lz_kd (l, s) ->
match lz_kd with
| None ->
assert (not (MFF.mem ff env.ff_lvl));
assert (not (SFF.mem ff s));
env.ff_lvl <- MFF.add ff dec_lvl env.ff_lvl;
add_form_to_lazy_cnf env l ff, SFF.add ff s
| Some _ ->
assert false
) mff (env.lazy_cnf, s)
in
env.lazy_cnf <- lz;
env.lvl_ff <- Util.MI.add dec_lvl s env.lvl_ff;
if do_bcp then
propagate_and_stabilize
env all_propagations (ref 0) Auto;
end
let new_vars env ~nbv new_v unit_cnf nunit_cnf =
match new_v with
| [] -> unit_cnf, nunit_cnf
| _ ->
let tenv0 = env.unit_tenv in
Vec.grow_to_by_double env.vars nbv;
Iheap.grow_to_by_double env.order nbv;
let accu =
List.fold_left
(fun ((unit_cnf, nunit_cnf) as accu) v ->
Vec.set env.vars v.vid v;
insert_var_order env v;
match th_entailed tenv0 v.pa with
| None -> accu
| Some (c, sz) ->
assert (sz >= 1);
if sz = 1 then c :: unit_cnf, nunit_cnf
else unit_cnf, c :: nunit_cnf
[@ocaml.ppwarning
"Issue: BAD decision_level, in particular, \
if minimal-bj is ON"]
) (unit_cnf, nunit_cnf) new_v
in
env.nb_init_vars <- nbv;
Vec.grow_to_by_double env.model nbv;
accu
let set_new_proxies env proxies =
env.proxies <- proxies
let try_to_backjump_further =
let rec better_bj env mf =
let old_dlvl = decision_level env in
let old_lazy = env.lazy_cnf in
let old_relevants = env.relevants in
let old_tenv = env.tenv in
let fictive_lazy =
MFF.fold (fun ff _ acc -> add_form_to_lazy_cnf env acc ff)
mf old_lazy
in
env.lazy_cnf <- fictive_lazy;
propagate_and_stabilize env all_propagations (ref 0) Auto;
let new_dlvl = decision_level env in
if old_dlvl > new_dlvl then better_bj env mf
else
begin
assert (old_dlvl == new_dlvl);
env.lazy_cnf <- old_lazy;
env.relevants <- old_relevants;
env.tenv <- old_tenv
end
in
fun env mff ->
if Options.cdcl_tableaux () then
better_bj env mff
let assume env unit_cnf nunit_cnf f ~cnumber mff ~dec_lvl =
begin
match unit_cnf, nunit_cnf with
| [], [] -> ()
| _, _ ->
let nbc =
env.nb_init_clauses + List.length unit_cnf + List.length nunit_cnf in
Vec.grow_to_by_double env.clauses nbc;
Vec.grow_to_by_double env.learnts nbc;
env.nb_init_clauses <- nbc;
List.iter (add_clause env f ~cnumber) unit_cnf;
List.iter (add_clause env f ~cnumber) nunit_cnf;
if verbose () then begin
fprintf fmt "%d clauses@." (Vec.size env.clauses);
fprintf fmt "%d learnts@." (Vec.size env.learnts);
end
end;
update_lazy_cnf env ~do_bcp:false mff ~dec_lvl;
propagate_and_stabilize env all_propagations (ref 0) Auto;
if dec_lvl > decision_level env then
try_to_backjump_further env mff
let exists_in_lazy_cnf env f' =
not (Options.cdcl_tableaux ()) ||
MFF.mem f' env.ff_lvl
let boolean_model env =
let l = ref [] in
for i = Vec.size env.trail - 1 downto 0 do
l := (Vec.get env.trail i) :: !l
done;
!l
let instantiation_context env hcons =
if Options.cdcl_tableaux_th () then
E.Set.fold
(fun a accu ->
SA.add (FF.get_atom hcons a) accu
)(Th.get_assumed env.tenv) SA.empty
else if Options.cdcl_tableaux_inst () then
SFF.fold (fun f acc ->
match FF.view f with
| FF.UNIT a -> SA.add a acc
| _ -> acc
)env.relevants SA.empty
else
assert false
let current_tbox env = env.tenv
let set_current_tbox env tb = env.tenv <- tb
let assume_th_elt env th_elt dep =
assert (decision_level env == 0);
env.tenv <- Th.assume_th_elt (current_tbox env) th_elt dep
let known_lazy_formulas env = env.ff_lvl
let assume_simple env cnf =
match cnf with
| [] -> ()
| _ ->
let nbc = env.nb_init_clauses + List.length cnf in
Vec.grow_to_by_double env.clauses nbc;
Vec.grow_to_by_double env.learnts nbc;
env.nb_init_clauses <- nbc;
List.iter (add_clause env vraie_form ~cnumber:0) cnf;
if verbose () then begin
fprintf fmt "%d clauses@." (Vec.size env.clauses);
fprintf fmt "%d learnts@." (Vec.size env.learnts);
end;
propagate_and_stabilize env all_propagations (ref 0) Stop
let decide env f =
if env.is_unsat then raise (Unsat env.unsat_core);
let n_of_conflicts = ref (to_float env.restart_first) in
let n_of_learnts =
ref ((to_float (nb_clauses env)) *. env.learntsize_factor) in
try
search env (ref (Interactive f))
(to_int !n_of_conflicts) (to_int !n_of_learnts);
with
| Restart -> assert false
| Sat -> ()
| Stopped -> ()
| Unsat _ -> assert false
end