Source file Literal.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
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
(** {1 Equational literals} *)
module T = Term
module S = Subst
module PB = Position.Build
module P = Position
module US = Unif_subst
module VS = T.VarSet
type term = Term.t
let _equational_sign = ref false
type t =
| True
| False
| Equation of term * term * bool
type lit = t
let equal l1 l2 =
match l1, l2 with
| Equation (l1,r1,sign1), Equation (l2,r2,sign2) ->
sign1 = sign2 && l1 == l2 && r1 == r2
| True, True
| False, False -> true
| Equation _, _
| True, _
| False, _
-> false
let equal_com l1 l2 =
match l1, l2 with
| Equation (l1,r1,sign1), Equation (l2,r2,sign2) ->
sign1 = sign2 &&
((T.equal l1 l2 && T.equal r1 r2) ||
(T.equal l1 r2 && T.equal r1 l2))
| True, True
| False, False -> true
| _ -> equal l1 l2
let no_prop_invariant =
function
| Equation (lhs,rhs,sign) ->
if (T.equal rhs T.false_) || T.is_true_or_false lhs then (
CCFormat.printf "failed for: @[%a@] @[%a@] @[%b@]@." T.pp lhs T.pp rhs sign;
false
) else true
| _ -> true
let compare l1 l2 =
assert(List.for_all no_prop_invariant [l1;l2]);
let __to_int = function
| False -> 0
| True -> 1
| Equation _ -> 2
in
match l1, l2 with
| Equation (l1,r1,sign1), Equation (l2,r2,sign2) ->
let c = T.compare l1 l2 in
if c <> 0 then c else
let c = T.compare r1 r2 in
if c <> 0 then c else
Pervasives.compare sign1 sign2
| True, True
| False, False -> 0
| _, _ -> __to_int l1 - __to_int l2
let fold f acc lit = match lit with
| Equation (l, r, _) -> f (f acc l) r
| True
| False -> acc
let for_all f lit = fold (fun b t -> b && f t) true lit
let hash lit =
match lit with
| Equation (l, r, sign) ->
Hash.combine4 30 (Hash.bool sign) (T.hash l) (T.hash r)
| True -> 40
| False -> 50
let weight lit =
fold (fun acc t -> acc + T.size t) 0 lit
let ho_weight =
fold (fun acc t -> acc + T.ho_weight t) 0
let heuristic_weight weight = function
| Equation (l, r, sign) when Term.equal r T.true_ -> weight l
| Equation (l, r, _) -> weight l + weight r
| True
| False -> 0
let depth lit =
fold (fun acc t -> max acc (T.depth t)) 0 lit
module Set = CCSet.Make(struct type t = lit let compare = compare end)
let[@inline] is_pos = function
| Equation (l, r, sign) -> sign
| False -> false
| _ -> true
let polarity = is_pos
let is_neg lit = not (is_pos lit)
let is_eqn = function
| Equation _ -> true
| _ -> false
let is_eq lit = is_eqn lit && is_pos lit
let is_neq lit = is_eqn lit && is_neg lit
let is_app_var_eq = function
| Equation (l,r,_) -> T.is_app_var l && T.is_app_var r
| _ -> false
let is_prop = function
| True | False -> true
| _ -> false
let is_type_pred = function
| Equation(lhs,rhs,_) when T.equal T.true_ rhs ->
begin match Term.view lhs with
| App(f, [x]) -> T.is_var x && T.is_const f
| _ -> false end
| _ -> false
let is_typex_pred = function
| Equation(lhs,rhs,_) when T.equal T.true_ rhs ->
begin match Term.view lhs with
| App(f, xs) when not (CCList.is_empty xs) ->
T.is_const f && List.for_all T.is_var xs
| _ -> false end
| _ -> false
let is_predicate_lit = function
| Equation(_,rhs,_) -> T.equal T.true_ rhs
| _ -> false
let is_essentially_prop = function
| Equation (_, rhs, _) -> T.equal T.true_ rhs
| _ -> false
let ty_error_ a b =
let msg =
CCFormat.sprintf
"@[<2>Literal: incompatible types in equational lit@ for `@[%a : %a@]`@ and `@[%a : %a@]`@]"
T.TPTP.pp a Type.pp (T.ty a) T.TPTP.pp b Type.pp (T.ty b)
in
raise (Type.ApplyError msg)
let rec mk_lit a b sign =
if not (Type.equal (T.ty a) (T.ty b)) then ty_error_ a b;
match T.view a, T.view b with
| T.AppBuiltin (Builtin.True, []), T.AppBuiltin (Builtin.False, []) -> if sign then False else True
| T.AppBuiltin (Builtin.False, []), T.AppBuiltin (Builtin.True, []) -> if sign then False else True
| T.AppBuiltin (Builtin.True, []), T.AppBuiltin (Builtin.True, []) -> if sign then True else False
| T.AppBuiltin (Builtin.False, []), T.AppBuiltin (Builtin.False, []) -> if sign then True else False
| T.AppBuiltin (Builtin.True, []), _ -> Equation (b, T.true_, sign)
| _, T.AppBuiltin (Builtin.True, []) -> Equation (a, T.true_, sign)
| T.AppBuiltin (Builtin.False, []), _ -> Equation (b, T.true_, not sign)
| _, T.AppBuiltin (Builtin.False, []) -> Equation (a, T.true_, not sign)
| _ -> Equation (a, b, sign)
and mk_prop p sign = match T.view p with
| T.AppBuiltin (Builtin.True, []) -> if sign then True else False
| T.AppBuiltin (Builtin.False, []) -> if sign then False else True
| T.AppBuiltin (Builtin.Not, [p']) -> mk_prop p' (not sign)
| T.AppBuiltin (Builtin.Eq, [a;b]) -> mk_lit a b sign
| T.AppBuiltin (Builtin.Neq, [a;b]) -> mk_lit a b (not sign)
| _ ->
if not (Type.equal (T.ty p) Type.prop) then ty_error_ p T.true_;
mk_lit p T.true_ sign
let mk_eq a b = mk_lit a b true
let mk_neq a b = mk_lit a b false
let mk_true p = mk_prop p true
let mk_false p = mk_prop p false
let mk_tauto = True
let mk_absurd = False
let mk_constraint l r = mk_neq l r
module Seq = struct
let terms lit k = match lit with
| Equation(l, r, _) -> k l; k r
| True | False -> ()
let vars lit = Iter.flat_map T.Seq.vars (terms lit)
let symbols ?(include_types=false) lit =
Iter.flat_map (T.Seq.symbols ~include_types) (terms lit)
end
let symbols ?(include_types=false) lit = Seq.symbols ~include_types lit |> ID.Set.of_iter
(** Unification-like operation on components of a literal. *)
module UnifOp = struct
type 'subst op = {
term : subst:'subst -> term Scoped.t -> term Scoped.t ->
'subst Iter.t;
}
end
let unif4 op ~subst x1 y1 sc1 x2 y2 sc2 k =
op ~subst (Scoped.make x1 sc1) (Scoped.make x2 sc2)
(fun subst -> op ~subst (Scoped.make y1 sc1) (Scoped.make y2 sc2) k);
op ~subst (Scoped.make y1 sc1) (Scoped.make x2 sc2)
(fun subst -> op ~subst (Scoped.make x1 sc1) (Scoped.make y2 sc2) k);
()
let unif_lits op ~subst (lit1,sc1) (lit2,sc2) k =
let open UnifOp in
match lit1, lit2 with
| True, True
| False, False -> k (subst,[])
| Equation (l1, r1, sign1), Equation (l2, r2, sign2) when sign1 = sign2 ->
unif4 op.term ~subst l1 r1 sc1 l2 r2 sc2 (fun s -> k (s,[]))
| _, _ -> ()
let variant ?(subst=S.empty) lit1 lit2 k =
let op = UnifOp.({
term=(fun ~subst t1 t2 k ->
try k (Unif.FO.variant ~subst t1 t2)
with Unif.Fail -> ());
})
in
unif_lits op ~subst lit1 lit2
(fun (subst,tags) -> if Subst.is_renaming subst then k (subst,tags))
let are_variant lit1 lit2 =
not (Iter.is_empty (variant (Scoped.make lit1 0) (Scoped.make lit2 1)))
let matching ?(subst=Subst.empty) ~pattern:lit1 lit2 k =
let op = UnifOp.({
term=(fun ~subst t1 t2 k ->
try k (Unif.FO.matching_adapt_scope ~subst ~pattern:t1 t2)
with Unif.Fail -> ());
})
in
unif_lits op ~subst lit1 lit2 k
let _eq_subsumes ~subst l1 r1 sc1 l2 r2 sc2 k =
let rec equate_terms ~subst l2 r2 k =
equate_root ~subst l2 r2 k;
match T.view l2, T.view r2 with
| _ when T.equal l2 r2 -> k subst
| T.App (f, ss), T.App (g, ts) when List.length ss = List.length ts ->
if T.equal f g
then equate_lists ~subst ss ts k
else ()
| _ -> ()
and equate_lists ~subst l2s r2s k = match l2s, r2s with
| [], [] -> k subst
| [], _
| _, [] -> ()
| l2::l2s', r2::r2s' ->
equate_terms ~subst l2 r2 (fun subst -> equate_lists ~subst l2s' r2s' k)
and equate_root ~subst l2 r2 k =
begin try
let subst = Unif.FO.matching_adapt_scope
~subst ~pattern:(Scoped.make l1 sc1) (Scoped.make l2 sc2) in
let subst = Unif.FO.matching_adapt_scope
~subst ~pattern:(Scoped.make r1 sc1) (Scoped.make r2 sc2) in
k subst
with Unif.Fail ->
()
end;
begin try
let subst = Unif.FO.matching_adapt_scope
~subst ~pattern:(Scoped.make l1 sc1) (Scoped.make r2 sc2) in
let subst = Unif.FO.matching_adapt_scope
~subst ~pattern:(Scoped.make r1 sc1) (Scoped.make l2 sc2) in
k subst
with Unif.Fail ->
()
end;
()
in
equate_terms ~subst l2 r2 k
let subsumes ?(subst=Subst.empty) (lit1,sc1) (lit2,sc2) k =
match lit1, lit2 with
| Equation (l1, r1, true), Equation (l2, r2, true) ->
_eq_subsumes ~subst l1 r1 sc1 l2 r2 sc2 (fun s -> k(s,[]))
| _ -> matching ~subst ~pattern:(lit1,sc1) (lit2,sc2) k
let unify ?(subst=US.empty) lit1 lit2 k =
let op = UnifOp.({
term=(fun ~subst t1 t2 k ->
try k (Unif.FO.unify_full ~subst t1 t2)
with Unif.Fail -> ());
})
in
unif_lits op ~subst lit1 lit2 k
let map_ f = function
| Equation (left, right, sign) ->
let new_left = f left
and new_right = f right in
mk_lit new_left new_right sign
| True -> True
| False -> False
let map f lit = map_ f lit
let apply_subst_ ~f_term subst (lit,sc) =
match lit with
| Equation (l,r,sign) ->
let new_l = f_term subst (l,sc)
and new_r = f_term subst (r,sc) in
mk_lit new_l new_r sign
| True
| False -> lit
let apply_subst renaming subst (lit,sc) =
apply_subst_ subst (lit,sc)
~f_term:(S.FO.apply renaming)
let apply_subst_no_simp renaming subst (lit,sc) =
match lit with
| Equation (l,r,sign) ->
mk_lit (S.FO.apply renaming subst (l,sc)) (S.FO.apply renaming subst (r,sc)) sign
| True
| False -> lit
let apply_subst_list renaming subst (lits,sc) =
List.map
(fun lit -> apply_subst renaming subst (lit,sc))
lits
exception Lit_is_constraint
let is_ho_constraint = function
| Equation (l, r, false) -> T.is_ho_at_root l || T.is_ho_at_root r
| _ -> false
let is_constraint = function
| Equation (t, u, false) -> T.is_var t || T.is_var u
| _ -> false
let negate lit =
assert(no_prop_invariant lit);
match lit with
| Equation (l,r,sign) -> mk_lit l r (not sign)
| True -> False
| False -> True
let vars lit =
Seq.vars lit |> T.VarSet.of_iter |> T.VarSet.to_list
let var_occurs v lit = match lit with
| Equation (l,r,_) -> T.var_occurs ~var:v l || T.var_occurs ~var:v r
| True
| False -> false
let is_ground lit = match lit with
| Equation (l,r,_) -> T.is_ground l && T.is_ground r
| True
| False -> true
let root_terms l =
Seq.terms l |> Iter.to_rev_list
let to_multiset lit = match lit with
| Equation (l,r,_) when T.equal r T.true_ ->
Multisets.MT.singleton l
| Equation (l, r, _) -> Multisets.MT.doubleton l r
| True
| False -> Multisets.MT.singleton T.true_
let is_trivial lit =
assert(no_prop_invariant lit);
match lit with
| True -> true
| False -> false
| Equation (l, r, true) -> T.equal l r
| Equation (_, _, false) -> false
let rec cannot_be_eq (t1:term)(t2:term): Builtin.Tag.t list option =
let module TC = T.Classic in
begin match TC.view t1, TC.view t2 with
| TC.AppBuiltin (Builtin.Int z1,[]), TC.AppBuiltin (Builtin.Int z2,[]) ->
if Z.equal z1 z2 then None else Some [Builtin.Tag.T_lia; Builtin.Tag.T_cannot_orphan]
| TC.AppBuiltin (Builtin.Rat n1,[]), TC.AppBuiltin (Builtin.Rat n2,[]) ->
if Q.equal n1 n2 then None else Some [Builtin.Tag.T_lra; Builtin.Tag.T_cannot_orphan]
| TC.App (c1, l1), TC.App (c2, l2)
when Ind_ty.is_constructor c1 && Ind_ty.is_constructor c2 ->
if ID.equal c1 c2 && List.length l1=List.length l2 then (
List.combine l1 l2
|> Iter.of_list
|> Iter.find_map (fun (a,b) -> cannot_be_eq a b)
) else Some [Builtin.Tag.T_data]
| _ -> None
end
let is_absurd lit =
assert(no_prop_invariant lit);
match lit with
| Equation (l, r, false) when T.equal l r -> true
| Equation (l, r, true) -> CCOpt.is_some (cannot_be_eq l r)
| False -> true
| Equation _ | True -> false
let is_absurd_tags lit =
assert(no_prop_invariant lit);
match lit with
| Equation (l,r,true) -> cannot_be_eq l r |> CCOpt.get_or ~default:[]
| Equation _ | False -> []
| True -> assert false
let fold_terms ?(position=Position.stop) ?(vars=false) ?(var_args=true) ?(fun_bodies=true) ?ty_args ~which ?(ord=Ordering.none) ~subterms lit k =
assert(no_prop_invariant lit);
let at_term ~pos t =
if subterms
then T.all_positions ?ty_args ~vars ~var_args ~fun_bodies ~pos t k
else if T.is_var t && not vars
then ()
else k (t, pos)
in
begin match lit with
| Equation (l, r, _) ->
begin match which with
| `All ->
at_term ~pos:P.(append position (left stop)) l;
at_term ~pos:P.(append position (right stop)) r
| `Max ->
begin match Ordering.compare ord l r with
| Comparison.Gt ->
at_term ~pos:P.(append position (left stop)) l
| Comparison.Lt ->
at_term ~pos:P.(append position (right stop)) r
| Comparison.Eq | Comparison.Incomparable ->
at_term ~pos:P.(append position (left stop)) l;
at_term ~pos:P.(append position (right stop)) r
end
end
| True
| False -> ()
end
let to_ho_term (lit:t): T.t = match lit with
| True -> T.true_
| False -> T.false_
| Equation (t, u, sign) when T.equal T.true_ u ->
(if not sign then T.Form.not_ else CCFun.id) t
| Equation (t, u, sign) ->
if sign then T.Form.eq t u else T.Form.neq t u
let as_ho_predicate (lit:t) : _ option =
assert(no_prop_invariant lit);
match lit with
| Equation(lhs,rhs,sign) when T.equal rhs T.true_ ->
let hd_t, args_t = T.as_app lhs in
begin match T.view hd_t, args_t with
| T.Var v, _::_ -> Some (v, hd_t, args_t, sign)
| _ -> None
end
| _ -> None
let is_ho_predicate lit = CCOpt.is_some (as_ho_predicate lit)
let is_ho_unif lit = match lit with
| Equation (t, u, false) -> Term.is_ho_app t || Term.is_ho_app u
| _ -> false
let of_unif_subst renaming (s:Unif_subst.t) : t list =
Unif_subst.constr_l_subst renaming s
|> List.map
(fun (t,u) ->
let t = T.of_term_unsafe t in
let u = T.of_term_unsafe u in
mk_constraint t u)
let normalize_eq lit =
let as_neg t =
match T.view t with
| T.AppBuiltin(Not, [f]) -> Some f
| _ -> None
in
let is_neg t = CCOpt.is_some @@ as_neg t in
let eq_builder ~pos ~neg l r =
match as_neg l, as_neg r with
| Some f1, Some f2 -> pos f1 f2
| Some f1, None -> neg f1 r
| None, Some f2 -> neg l f2
| None, None -> pos l r
in
let mk_eq_ l r = eq_builder ~pos:mk_eq ~neg:mk_neq l r in
let mk_neq_ l r = eq_builder ~pos:mk_neq ~neg:mk_eq l r in
let rec aux lit =
match lit with
| Equation(lhs, rhs, sign)
when T.equal rhs T.true_ ->
begin match T.view lhs with
| T.AppBuiltin(Builtin.(Eq|Equiv), ([_;l;r] | [l;r])) ->
let eq_cons = if sign then mk_eq_ else mk_neq_ in
Some (eq_cons l r)
| T.AppBuiltin(Builtin.(Neq|Xor), ([_;l;r]|[l;r])) ->
let eq_cons = if sign then mk_neq_ else mk_eq_ in
Some (eq_cons l r)
| T.AppBuiltin (Builtin.Not, [f]) ->
let elim_not = mk_lit f T.true_ (not sign) in
Some (CCOpt.get_or ~default:elim_not (aux elim_not))
| _ -> None
end
| Equation(lhs,rhs,sign) when is_neg lhs || is_neg rhs ->
assert (not (T.equal rhs T.true_));
Some ((if sign then mk_eq_ else mk_neq_) lhs rhs)
| _ -> None in
aux lit
(** {2 IO} *)
let pp_debug ?(hooks=[]) out lit =
if List.for_all (fun h -> not (h out lit)) hooks
then (begin match lit with
| Equation (p, t, sign) when T.equal t T.true_ ->
Format.fprintf out "@[%s%a@]" (if sign then "" else "¬") T.pp p
| True -> CCFormat.string out "Τ"
| False -> CCFormat.string out "⊥"
| Equation (l, r, true) ->
Format.fprintf out "@[<1>%a@ = %a@]" T.pp l T.pp r
| Equation (l, r, false) ->
Format.fprintf out "@[<1>%a@ ≠ %a@]" T.pp l T.pp r
end)
let pp_tstp out lit =
match lit with
| Equation (p, t, sign) when T.equal t T.true_ ->
Format.fprintf out "%s%a" (if sign then "" else "~ ") T.TPTP.pp p
| True -> CCFormat.string out "$true"
| False -> CCFormat.string out "$false"
| Equation (l, r, true) ->
Format.fprintf out "(@[<1>%a@ = %a@])" T.TPTP.pp l T.TPTP.pp r
| Equation (l, r, false) ->
Format.fprintf out "(@[<1>%a@ != %a@])" T.TPTP.pp l T.TPTP.pp r
let pp_zf out lit =
match lit with
| Equation (p, t, sign) when T.equal t T.true_ ->
Format.fprintf out "%s %a" (if sign then "" else "~") T.ZF.pp p
| True -> CCFormat.string out "true"
| False -> CCFormat.string out "false"
| Equation (l, r, true) ->
Format.fprintf out "@[<1>%a@ = %a@]" T.ZF.pp l T.ZF.pp r
| Equation (l, r, false) ->
Format.fprintf out "@[<1>%a@ != %a@]" T.ZF.pp l T.ZF.pp r
type print_hook = CCFormat.t -> t -> bool
let __hooks = ref []
let add_default_hook h = __hooks := h :: !__hooks
let pp buf lit = pp_debug ~hooks:!__hooks buf lit
let to_string t = CCFormat.to_string pp t
module Comp = struct
module O = Ordering
module C = Comparison
let _maxterms2 ~ord l r =
match O.compare ord l r with
| C.Gt -> [l]
| C.Lt -> [r]
| C.Eq -> [l]
| C.Incomparable ->
[l; r]
let max_terms ~ord lit =
assert(no_prop_invariant lit);
match lit with
| Equation (l, r, _) when is_essentially_prop lit ->
let l = Lambda.whnf l in
if T.is_app_var l then [l;r]
else [l]
| Equation (l, r, _) ->
_maxterms2 ~ord l r
| True
| False -> []
let _some_term_dominates f l1 l2 =
List.exists
(fun x -> List.for_all (fun y -> f x y = Comparison.Gt) l2)
l1
let _cmp_by_maxterms ~ord l1 l2 =
let t1 = max_terms ~ord l1 and t2 = max_terms ~ord l2 in
let f = Ordering.compare ord in
match _some_term_dominates f t1 t2, _some_term_dominates f t2 t1 with
| false, false ->
let t1' = CCList.fold_right T.Set.add t1 T.Set.empty
and t2' = CCList.fold_right T.Set.add t2 T.Set.empty in
if T.Set.equal t1' t2'
then C.Eq
else C.Incomparable
| true, true -> assert false
| true, false -> C.Gt
| false, true -> C.Lt
let _cmp_by_polarity l1 l2 =
let p1 = polarity l1 in
let p2 = polarity l2 in
match p1, p2 with
| true, true
| false, false -> Comparison.Eq
| true, false -> Comparison.Lt
| false, true -> Comparison.Gt
let _cmp_by_kind l1 l2 =
let _to_int = function
| False
| True -> 0
| Equation _ -> 30
in
C.of_total (Pervasives.compare (_to_int l1) (_to_int l2))
let _cmp_by_term_multiset ~ord l1 l2 =
let m1 = to_multiset l1 and m2 = to_multiset l2 in
Multisets.MT.compare_partial (Ordering.compare ord) m1 m2
let _cmp_specific ~ord l1 l2 =
match l1, l2 with
| True, True
| True, False
| True, Equation _
| False, False
| False, True
| False, Equation _
| Equation _, Equation _
| Equation _, True
| Equation _, False ->
_cmp_by_term_multiset ~ord l1 l2
let compare ~ord l1 l2 =
let f = Comparison.(
_cmp_by_maxterms ~ord @>>
_cmp_by_polarity @>>
_cmp_by_kind @>>
_cmp_specific ~ord
) in
let res = f l1 l2 in
res
end
module Pos = struct
type split = {
lit_pos : Position.t;
term_pos : Position.t;
term : term;
}
let _fail_lit lit pos =
let msg =
CCFormat.sprintf "@[<2>invalid position @[%a@]@ in lit @[%a@]@]"
Position.pp pos pp lit
in invalid_arg msg
let split lit pos =
match lit, pos with
| True, P.Stop ->
{lit_pos=P.stop; term_pos=P.stop; term=T.true_; }
| False, P.Stop ->
{lit_pos=P.stop; term_pos=P.stop; term=T.false_; }
| Equation (l,_,_), P.Left pos' ->
{lit_pos=P.(left stop); term_pos=pos'; term=l; }
| Equation (_,r,_), P.Right pos' ->
{lit_pos=P.(right stop); term_pos=pos'; term=r; }
| _ -> _fail_lit lit pos
let cut lit pos =
let s = split lit pos in
s.lit_pos, s.term_pos
let at lit pos =
let s = split lit pos in
T.Pos.at s.term s.term_pos
let replace lit ~at ~by =
match lit, at with
| Equation (l, r, sign), P.Left pos' ->
let cons = if sign then mk_eq else mk_neq in
cons (T.Pos.replace l pos' ~by) r
| Equation (l, r, sign), P.Right pos' ->
let cons = if sign then mk_eq else mk_neq in
cons l (T.Pos.replace r pos' ~by)
| True, _
| False, _ -> lit
| _ -> _fail_lit lit at
let root_term lit pos =
at lit (fst (cut lit pos))
let term_pos lit pos = snd (cut lit pos)
let is_max_term ~ord lit pos =
match lit, pos with
| Equation (l, r, _), P.Left _ ->
Ordering.compare ord l r <> Comparison.Lt
| Equation (l, r, _), P.Right _ ->
Ordering.compare ord r l <> Comparison.Lt
| True, _
| False, _ -> true
| Equation _, _ -> _fail_lit lit pos
end
let replace lit ~old ~by = map (T.replace ~old ~by) lit
module Conv = struct
type hook_from = term SLiteral.t -> t option
type hook_to = t -> term SLiteral.t option
let rec try_hooks x hooks = match hooks with
| [] -> None
| h::hooks' ->
match h x with
| None -> try_hooks x hooks'
| (Some _) as res -> res
let of_form ?(hooks=[]) f =
match try_hooks f hooks with
| Some lit -> lit
| None ->
begin match f with
| SLiteral.True -> True
| SLiteral.False -> False
| SLiteral.Atom (t,b) -> mk_prop t b
| SLiteral.Eq (l,r) -> mk_eq l r
| SLiteral.Neq (l,r) -> mk_neq l r
end
let to_form ?(hooks=[]) lit =
assert (no_prop_invariant lit);
begin match try_hooks lit hooks with
| Some f -> f
| None ->
begin match lit with
| Equation (l, r, sign) ->
assert(Type.equal (Term.ty l) (Term.ty r));
if Type.is_prop (Term.ty l) then (
if T.equal r T.true_ then SLiteral.atom l sign
else (
let hd = if sign then Builtin.Equiv else Builtin.Xor in
SLiteral.atom (T.app_builtin ~ty:Type.prop hd [l;r]) true
)
) else (
if sign then SLiteral.eq l r
else SLiteral.neq l r
)
| True -> SLiteral.true_
| False -> SLiteral.false_
end
end
let lit_to_tst ?(ctx=T.Conv.create ()) lit =
begin match lit with
| SLiteral.Atom (p,s) ->
let p = if s then p else T.Form.not_ p in
T.Conv.to_simple_term ctx p
| SLiteral.Eq(l,r) when T.equal T.true_ r ->
T.Conv.to_simple_term ctx l
| SLiteral.Neq(l,r) when T.equal T.true_ r ->
T.Conv.to_simple_term ctx (T.Form.not_ l)
| SLiteral.Eq(l,r) ->
let l,r = CCPair.map_same (T.Conv.to_simple_term ctx) (l,r) in
TypedSTerm.app_builtin ~ty:TypedSTerm.Ty.prop Builtin.Eq [l;r]
| SLiteral.Neq(l,r) ->
let l,r = CCPair.map_same (T.Conv.to_simple_term ctx) (l,r) in
TypedSTerm.app_builtin ~ty:TypedSTerm.Ty.prop Builtin.Neq [l;r]
| SLiteral.True -> TypedSTerm.Form.true_
| SLiteral.False -> TypedSTerm.Form.false_
end
let to_s_form ?allow_free_db ?(ctx=T.Conv.create()) ?hooks lit =
to_form ?hooks lit
|> SLiteral.map ~f:(T.Conv.to_simple_term ?allow_free_db ctx)
|> SLiteral.to_form
end
module View = struct
let as_eqn lit =
assert(no_prop_invariant lit);
match lit with
| Equation (l,r,sign) -> Some (l, r, sign)
| True | False -> None
let get_eqn lit position =
match lit, position with
| Equation (l,r,sign), P.Left _ -> Some (l, r, sign)
| Equation (l,r,sign), P.Right _ -> Some (r, l, sign)
| True, _ | False, _ -> None
| _ -> invalid_arg "get_eqn: wrong literal or position"
let get_lhs = function
| Equation(lhs, _, _) -> Some lhs
| _ -> None
let get_rhs = function
| Equation(_, rhs, _) -> Some rhs
| _ -> None
end
let _as_var = fun t -> T.as_var_exn (Lambda.eta_reduce t)
let as_inj_def lit =
match View.as_eqn lit with
| Some (l, r, false) ->
(try
let hd_l, hd_r = T.head_exn l, T.head_exn r in
let vars_l, vars_r = List.map _as_var (T.args l), List.map _as_var (T.args r) in
let args_l, args_r = VS.of_list vars_l, VS.of_list vars_r in
if hd_l = hd_r &&
VS.cardinal args_l = List.length (T.args l) &&
VS.cardinal args_r = List.length (T.args r) &&
VS.cardinal args_l = VS.cardinal args_r &&
VS.inter args_l args_r = VS.empty then
Some( hd_l, List.combine vars_l vars_r )
else None
with Invalid_argument _ -> None)
| _ -> None
let is_pure_var lit =
match lit with
| Equation(l,r,_) ->
begin
try
ignore(_as_var l, _as_var r);
true
with Invalid_argument _ -> false
end
| _ -> false
let max_term_positions ~ord = function
| Equation (lhs, rhs, _) ->
begin match Ordering.compare ord lhs rhs with
| Comparison.Gt -> Term.ho_weight lhs
| Comparison.Lt -> Term.ho_weight rhs
| _ -> Term.ho_weight lhs + Term.ho_weight rhs
end
| _ -> 1
let as_pos_pure_var lit =
match View.as_eqn lit with
| Some (l, r, true) when is_pure_var lit && is_pos lit -> Some(_as_var l,_as_var r)
| _ -> None
let are_opposite_subst ~subst (l1,sc1) (l2,sc2) =
let module UF = Unif.FO in
is_pos l1 != is_pos l2 &&
is_predicate_lit l1 = is_predicate_lit l2 &&
match l1, l2 with
| Equation(lhs, rhs, _), Equation(lhs', rhs', _) when is_predicate_lit l1 ->
(UF.equal ~subst (lhs, sc1) (lhs', sc2) && UF.equal ~subst (rhs, sc1) (rhs', sc2))
|| (UF.equal ~subst (lhs, sc1) (rhs', sc2) && UF.equal ~subst (rhs, sc1) (lhs', sc2))
| Equation(lhs, _, _), Equation(lhs', _, _)->
UF.equal ~subst (lhs, sc1) (lhs', sc2)
| True, True -> true
| False, False -> true
| _ -> false
let are_opposite_same_sc l1 l2 =
are_opposite_subst ~subst:Subst.empty (l1,0) (l2,0)
let () =
Options.add_opts
[ "--equational-sign", (Arg.Bool ((:=)_equational_sign)), " use the sign of the equation to report polarity"
];