Source file clenv.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
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
open CErrors
open Util
open Names
open Nameops
open Termops
open Constr
open Context
open Environ
open Evd
open EConstr
open Vars
open Reductionops
open Tacred
open Pretype_errors
open Evarutil
open Unification
open Tactypes
open Logic
type meta_arg = {
marg_meta : metavariable;
marg_chain : metavariable list option;
marg_dep : bool;
marg_templ : (rel_context * Univ.Level.t) option;
}
type clausenv = {
env : env;
evd : evar_map;
metam : Unification.Meta.t;
metas : meta_arg list;
templval : constr;
metaset : Metaset.t;
templtyp : (constr * Metaset.t);
}
let mk_clausenv env evd metam metas templval metaset templtyp = {
env; evd; metam; metas; templval; metaset; templtyp;
}
let merge_fsorts evd clenv =
let usubst = Evd.universe_subst evd in
let filter l = not (UnivFlex.mem l usubst) in
let fold accu marg = match marg.marg_templ with
| None -> accu
| Some (ctx, l) -> Univ.Level.Set.add l accu
in
let fsorts = List.fold_left fold Univ.Level.Set.empty clenv.metas in
let fsorts = Univ.Level.Set.filter filter fsorts in
let uctx = (fsorts, Univ.Constraints.empty) in
Evd.merge_context_set Evd.univ_flexible evd uctx
let update_clenv_evd clenv evd metam =
let evd = merge_fsorts evd clenv in
mk_clausenv clenv.env evd metam clenv.metas clenv.templval clenv.metaset clenv.templtyp
let strip_params env sigma c =
match EConstr.kind sigma c with
| App (f, args) ->
(match EConstr.kind sigma f with
| Const cst ->
(match Structures.PrimitiveProjections.find_opt_with_relevance cst with
| Some (p,r) ->
let p = Projection.make p false in
let npars = Projection.npars p in
if Array.length args > npars then
mkApp (mkProj (p, r, args.(npars)),
Array.sub args (npars+1) (Array.length args - (npars + 1)))
else c
| None -> c)
| _ -> c)
| _ -> c
let meta_handler sigma =
let meta_value mv = match Unification.Meta.meta_opt_fvalue sigma mv with
| None -> None
| Some b -> Some b.rebus
in
{ Reductionops.meta_value }
let clenv_strip_proj_params clenv =
let templval = strip_params clenv.env clenv.evd clenv.templval in
mk_clausenv clenv.env clenv.evd clenv.metam clenv.metas templval clenv.metaset clenv.templtyp
let get_template env sigma c =
let (hd, args) = EConstr.decompose_app sigma c in
match EConstr.destRef sigma hd with
| ConstructRef (ind, i), u when Environ.template_polymorphic_ind ind env ->
let (mib, mip) = Inductive.lookup_mind_specif env ind in
let templ = match mib.Declarations.mind_template with
| None -> assert false
| Some t -> t.template_param_arguments
in
Some (ind, List.skipn_at_best (Array.length args) templ)
| _ -> None
| exception DestKO -> None
let get_type_of_with_metas ~metas env sigma c =
let metas n =
try Some (Unification.Meta.meta_ftype metas n).Unification.rebus
with Not_found -> None
in
Retyping.get_type_of ~metas env sigma c
let refresh_template_constraints ~metas env sigma ind c =
let (mib, _) as spec = Inductive.lookup_mind_specif env ind in
let (_, cstrs0) = (Option.get mib.mind_template).template_context in
if Univ.Constraints.is_empty cstrs0 then sigma
else
let _, allargs = decompose_app sigma c in
let map c = { uj_val = c; uj_type = get_type_of_with_metas ~metas env sigma c } in
let allargs = Array.map map allargs in
let sigma, univs = Typing.get_template_parameters env sigma ind allargs in
let cstrs, _, _ = Inductive.instantiate_template_universes spec univs in
Evd.add_constraints sigma cstrs
let clenv_refresh env sigma ctx clenv =
match ctx with
| Some ctx ->
let (subst, ctx) = UnivGen.fresh_sort_context_instance ctx in
let emap c = Vars.subst_univs_level_constr subst c in
let sigma = Evd.merge_sort_context_set Evd.univ_flexible sigma ctx in
mk_clausenv env sigma (Unification.Meta.map_metas emap clenv.metam) clenv.metas
(emap clenv.templval)
clenv.metaset
(emap (fst clenv.templtyp), snd clenv.templtyp)
| None ->
let fold (metas, sigma) marg = match marg.marg_templ with
| None -> (metas, sigma), marg
| Some (decls, _) ->
let sigma, s = Evd.new_univ_level_variable Evd.univ_flexible_alg sigma in
let t = it_mkProd_or_LetIn (mkType (Univ.Universe.make s)) decls in
let name = Meta.meta_name clenv.metam marg.marg_meta in
let metas = Meta.meta_declare marg.marg_meta t ~name metas in
(metas, sigma), { marg with marg_templ = Some (decls, s) }
in
let (metam, evd), metas = List.fold_left_map fold (clenv.metam, sigma) clenv.metas in
let evd = match get_template env sigma clenv.templval with
| None -> evd
| Some (ind, _) -> refresh_template_constraints ~metas:metam env evd ind clenv.templval
in
mk_clausenv env evd metam metas clenv.templval clenv.metaset clenv.templtyp
let clenv_evd ce = ce.evd
let clenv_arguments c = List.map (fun arg -> arg.marg_meta) c.metas
let clenv_meta_list c = c.metam
let clenv_meta_type ~metas env sigma mv =
let ty =
try Unification.Meta.meta_ftype metas mv
with Not_found -> anomaly Pp.(str "unknown meta ?" ++ str (Nameops.string_of_meta mv) ++ str ".") in
if Metaset.is_empty ty.freemetas then ty.rebus else Meta.meta_instance metas env sigma ty.rebus
let clenv_value clenv =
if Metaset.is_empty clenv.metaset then clenv.templval
else Meta.meta_instance clenv.metam clenv.env clenv.evd clenv.templval
let clenv_type clenv =
if Metaset.is_empty (snd clenv.templtyp) then fst clenv.templtyp
else Meta.meta_instance clenv.metam clenv.env clenv.evd (fst clenv.templtyp)
let clenv_push_prod cl =
let metas = meta_handler cl.metam in
let typ = whd_all ~metas cl.env (clenv_evd cl) (clenv_type cl) in
let rec clrec typ = match EConstr.kind cl.evd typ with
| Cast (t,_,_) -> clrec t
| Prod (na,t,u) ->
let mv = new_meta () in
let dep = not (noccurn (clenv_evd cl) 1 u) in
let na' = if dep then na.binder_name else Anonymous in
let e' = Meta.meta_declare mv t ~name:na' cl.metam in
let concl = if dep then subst1 (mkMeta mv) u else u in
let templval = applist (cl.templval, [mkMeta mv]) in
let metaset = Metaset.add mv cl.metaset in
let marg = {
marg_meta = mv;
marg_chain = None;
marg_dep = dep;
marg_templ = None;
} in
Some (mv, dep, { templval; metaset;
templtyp = (concl, metavars_of concl);
evd = cl.evd;
metam = e';
env = cl.env;
metas = cl.metas @ [marg]; })
| _ -> None
in clrec typ
(** [clenv_environments sigma n t] returns [sigma',lmeta,ccl] where
[lmetas] is a list of metas to be applied to a proof of [t] so that
it produces the unification pattern [ccl]; [sigma'] is [sigma]
extended with [lmetas]; if [n] is defined, it limits the size of
the list even if [ccl] is still a product; otherwise, it stops when
[ccl] is not a product; example: if [t] is [forall x y, x=y -> y=x]
and [n] is [None], then [lmetas] is [Meta n1;Meta n2;Meta n3] and
[ccl] is [Meta n1=Meta n2]; if [n] is [Some 1], [lmetas] is [Meta n1]
and [ccl] is [forall y, Meta n1=y -> y=Meta n1] *)
let clenv_environments env sigma template bound t =
let open EConstr in
let open Vars in
let rec clrec templ sigma metam metas n t =
match n, EConstr.kind sigma t with
| (Some 0, _) -> (metam, sigma, List.rev metas, t)
| (n, Cast (t,_,_)) -> clrec templ sigma metam metas n t
| (n, Prod (na,t1,t2)) ->
let mv = new_meta () in
let dep = not (noccurn sigma 1 t2) in
let na' = if dep then na.binder_name else Anonymous in
let sigma, t1, templ, tmpl = match templ with
| [] -> sigma, t1, templ, None
| false :: templ -> sigma, t1, templ, None
| true :: templ ->
let decls, _ = Reductionops.dest_arity env sigma t1 in
let sigma, s = Evd.new_univ_level_variable Evd.univ_flexible_alg sigma in
let t1 = EConstr.it_mkProd_or_LetIn (EConstr.mkType (Univ.Universe.make s)) decls in
sigma, t1, templ, Some (decls, s)
in
let metam = Meta.meta_declare mv t1 ~name:na' metam in
let t2 = if dep then (subst1 (mkMeta mv) t2) else t2 in
clrec templ sigma metam ((mv, dep, tmpl) :: metas) (Option.map ((+) (-1)) n) t2
| (n, LetIn (na,b,_,t)) -> clrec templ sigma metam metas n (subst1 b t)
| (n, _) -> (metam, sigma, List.rev metas, t)
in
clrec template sigma Meta.empty [] bound t
let mk_clenv_from_env env sigma n (c,cty) =
let evd = sigma in
let template = get_template env sigma c in
let template_args = match template with Some (_, args) -> args | None -> [] in
let (metas, evd, args, concl) = clenv_environments env evd template_args n cty in
let map (mv, _, _) = mkMeta mv in
let templval = mkApp (c, Array.map_of_list map args) in
let evd = match template with
| None -> evd
| Some (ind, _) -> refresh_template_constraints ~metas env evd ind templval
in
let metaset = Metaset.of_list (List.map pi1 args) in
let map (mv, dep, tmpl) = { marg_meta = mv; marg_chain = None; marg_dep = dep; marg_templ = tmpl } in
{ templval; metaset;
templtyp = (concl, metavars_of concl);
metam = metas;
evd = evd;
env = env;
metas = List.map map args;
}
let mk_clenv_from env sigma c = mk_clenv_from_env env sigma None c
let mk_clenv_from_n env sigma n c = mk_clenv_from_env env sigma (Some n) c
let mentions sigma mv0 =
let rec menrec mv1 =
Int.equal mv0 mv1 ||
let mlist =
try match Meta.meta_opt_fvalue sigma mv1 with
| Some b -> b.freemetas
| None -> Metaset.empty
with Not_found -> Metaset.empty in
Metaset.exists menrec mlist
in menrec
let error_incompatible_inst sigma mv =
let na = Meta.meta_name sigma mv in
match na with
| Name id ->
user_err
Pp.(str "An incompatible instantiation has already been found for " ++
Id.print id)
| _ ->
anomaly ~label:"clenv_assign" (Pp.str "non dependent metavar already assigned.")
let clenv_assign ~metas env sigma mv rhs =
let rhs_metas = metavars_of rhs in
if Metaset.exists (mentions metas mv) rhs_metas then
user_err Pp.(str "clenv_assign: circularity in unification");
try
begin match Meta.meta_opt_fvalue metas mv with
| Some body ->
if not (EConstr.eq_constr sigma body.rebus rhs) then
error_incompatible_inst metas mv
else
sigma, metas
| None ->
Meta.meta_assign mv (rhs, Meta.TypeNotProcessed) metas sigma
end
with Not_found ->
user_err Pp.(str "clenv_assign: undefined meta")
let clenv_metas_in_type_of_meta ~metas env sigma mv =
let typ = Meta.meta_ftype metas mv in
let typ = if Metaset.is_empty typ.freemetas then typ.rebus else Meta.meta_instance metas env sigma typ.rebus in
metavars_of typ
let dependent_in_type_of_metas ~metas env sigma mvs =
List.fold_right
(fun mv -> Metaset.union (clenv_metas_in_type_of_meta ~metas env sigma mv))
mvs Metaset.empty
let dependent_closure ~metas env sigma mvs =
let rec aux mvs acc =
Metaset.fold
(fun mv deps ->
let metas_of_meta_type = clenv_metas_in_type_of_meta ~metas env sigma mv in
aux metas_of_meta_type (Metaset.union deps metas_of_meta_type))
mvs acc in
aux mvs mvs
let undefined_metas metas =
let fold n accu = match Unification.Meta.meta_opt_fvalue metas n with
| Some _ -> accu
| None -> n :: accu
in
let m = Unification.Meta.fold fold metas [] in
List.sort Int.compare m
let clenv_dependent_gen hyps_only ?(iter=true) ~metas env sigma concl =
let all_undefined = undefined_metas metas in
let deps_in_concl = metavars_of concl in
let deps_in_hyps = dependent_in_type_of_metas ~metas env sigma all_undefined in
let deps_in_concl =
if hyps_only && iter then dependent_closure ~metas env sigma deps_in_concl
else deps_in_concl in
List.filter
(fun mv ->
if hyps_only then
Metaset.mem mv deps_in_hyps && not (Metaset.mem mv deps_in_concl)
else
Metaset.mem mv deps_in_hyps || Metaset.mem mv deps_in_concl)
all_undefined
let clenv_missing ce =
let miss = clenv_dependent_gen ~metas:ce.metam true ce.env ce.evd (clenv_type ce) in
let miss = List.map (Unification.Meta.meta_name ce.metam) miss in
(miss, List.count (fun arg -> not arg.marg_dep) ce.metas)
let clenv_unify ?(flags=default_unify_flags ()) cv_pb t1 t2 clenv =
let metas = clenv.metam in
let metas, sigma = w_unify ~metas ~flags clenv.env clenv.evd cv_pb t1 t2 in
update_clenv_evd clenv sigma metas
let clenv_unify_meta_types ?(flags=default_unify_flags ()) clenv =
let metas = clenv.metam in
let metas, sigma = w_unify_meta_types ~metas ~flags:flags clenv.env clenv.evd in
update_clenv_evd clenv sigma metas
let clenv_unique_resolver ?(flags=default_unify_flags ()) clenv concl =
let metas = meta_handler clenv.metam in
let (hd, _) = decompose_app clenv.evd (whd_nored ~metas clenv.env clenv.evd (fst clenv.templtyp)) in
let clenv = if isMeta clenv.evd hd then clenv_unify_meta_types ~flags clenv else clenv in
clenv_unify CUMUL ~flags (clenv_type clenv) concl clenv
let adjust_meta_source ~metas evd mv = function
| loc,Evar_kinds.VarInstance id ->
let rec match_name c l =
match EConstr.kind evd c, l with
| Lambda ({binder_name=Name id},_,c), a::l when EConstr.eq_constr evd a (mkMeta mv) -> Some id
| Lambda (_,_,c), a::l -> match_name c l
| _ -> None in
let f mv' =
let t = Unification.Meta.meta_ftype metas mv' in
if Metaset.mem mv t.freemetas then
let f,l = decompose_app_list evd t.rebus in
match EConstr.kind evd f with
| Meta mv'' ->
(match Meta.meta_opt_fvalue metas mv'' with
| Some c -> match_name c.rebus l
| None -> None)
| _ -> None
else None in
let metas = List.rev @@ Unification.Meta.fold (fun mv accu -> mv :: accu) metas [] in
let id = Option.default id (List.find_map f metas) in
loc,Evar_kinds.VarInstance id
| src -> src
let clenv_pose_metas_as_evars ~metas env sigma dep_mvs =
let rec fold metas sigma = function
| [] -> metas, sigma
| mv::mvs ->
let ty = clenv_meta_type ~metas env sigma mv in
if occur_meta sigma ty then fold metas sigma (mvs@[mv])
else
let src = Meta.evar_source_of_meta mv metas in
let src = adjust_meta_source ~metas sigma mv src in
let (sigma, evar) = new_evar env sigma ~src ty in
let sigma, metas = clenv_assign ~metas env sigma mv evar in
fold metas sigma mvs in
fold metas sigma dep_mvs
let fchain_flags () =
{ (default_unify_flags ()) with
allow_K_in_toplevel_higher_order_unification = true }
let clenv_instantiate ?(flags=fchain_flags ()) ?submetas mv clenv (c, ty) =
let clenv, c = match submetas with
| None -> clenv, c
| Some (metas, metam) ->
let metam = Unification.Meta.meta_merge metam clenv.metam in
let clenv = update_clenv_evd clenv clenv.evd metam in
let c = applist (c, List.map mkMeta metas) in
let map arg =
if Int.equal mv arg.marg_meta then
let () = assert (Option.is_empty arg.marg_chain) in
{ arg with marg_chain = Some metas }
else arg
in
let metas = List.map map clenv.metas in
{ clenv with metas = metas }, c
in
let clenv = clenv_unify ~flags CUMUL ty (clenv_meta_type ~metas:clenv.metam clenv.env clenv.evd mv) clenv in
let evd, metam = clenv_assign ~metas:clenv.metam clenv.env clenv.evd mv c in
update_clenv_evd clenv evd metam
let clenv_independent clenv =
let mvs = collect_metas clenv.evd (clenv_value clenv) in
let ctyp_mvs = metavars_of (clenv_type clenv) in
let deps = Metaset.union (dependent_in_type_of_metas ~metas:clenv.metam clenv.env clenv.evd mvs) ctyp_mvs in
List.filter (fun mv -> not (Metaset.mem mv deps)) mvs
let qhyp_eq h1 h2 = match h1, h2 with
| NamedHyp n1, NamedHyp n2 -> lident_eq n1 n2
| AnonHyp i1, AnonHyp i2 -> Int.equal i1 i2
| _ -> false
let check_bindings bl =
match List.duplicates qhyp_eq (List.map (fun {CAst.v=x} -> fst x) bl) with
| NamedHyp s :: _ ->
user_err ?loc:s.CAst.loc
Pp.(str "The variable " ++ Id.print s.CAst.v ++
str " occurs more than once in binding list.");
| AnonHyp n :: _ ->
user_err
Pp.(str "The position " ++ int n ++
str " occurs more than once in binding list.")
| [] -> ()
let explain_no_such_bound_variable mvl {CAst.v=id;loc} =
let open Pp in
let expl = match mvl with
| [] -> str "(no bound variables at all in the expression)."
| [id] -> str "(possible name is: " ++ Id.print id ++ str ")."
| _ -> str "(possible names are: " ++ pr_enum Id.print mvl ++ str ")."
in
user_err ?loc (str "No such bound variable " ++ Id.print id ++ spc () ++ expl)
let meta_with_name metas ({CAst.v=id} as lid) =
let na = Name id in
let fold n (l1, l2 as l) =
let na' = Unification.Meta.meta_name metas n in
let def = Option.has_some (Unification.Meta.meta_opt_fvalue metas n) in
if Name.equal na na' then if def then (n::l1,l2) else (n::l1,n::l2)
else l
in
let (mvl, mvnodef) = Unification.Meta.fold fold metas ([], []) in
match List.rev mvnodef, List.rev mvl with
| _,[] ->
let fold n l =
let na = Unification.Meta.meta_name metas n in
if na != Anonymous then Name.get_id na :: l else l
in
let mvl = List.rev (Unification.Meta.fold fold metas []) in
explain_no_such_bound_variable mvl lid
| (n::_,_|_,n::_) ->
n
let meta_of_binder clause loc mvs = function
| NamedHyp s -> meta_with_name clause.metam s
| AnonHyp n ->
try List.nth mvs (n-1)
with (Failure _|Invalid_argument _) ->
user_err Pp.(str "No such binder.")
let error_already_defined b =
match b with
| NamedHyp id ->
user_err ?loc:id.CAst.loc
Pp.(str "Binder name \"" ++ Id.print id.CAst.v ++
str"\" already defined with incompatible value.")
| AnonHyp n ->
anomaly
Pp.(str "Position " ++ int n ++ str" already defined.")
let clenv_unify_binding_type ~metas env sigma c t u =
if isMeta sigma (fst (decompose_app sigma (whd_nored ~metas:(meta_handler metas) env sigma u))) then
Meta.CoerceToType, metas, sigma, c
else
try
let sigma, metas, c = w_coerce_to_type ~metas env sigma c t u in
Meta.TypeProcessed, metas, sigma, c
with
| PretypeError (_,_,ActualTypeNotCoercible (_,_,
(NotClean _ | ConversionFailed _))) as e ->
raise e
| e when precatchable_exception e ->
Meta.TypeNotProcessed, metas, sigma, c
let clenv_assign_binding clenv k c =
let k_typ = hnf_constr clenv.env clenv.evd (clenv_meta_type ~metas:clenv.metam clenv.env clenv.evd k) in
let c_typ = nf_betaiota clenv.env clenv.evd (Retyping.get_type_of clenv.env clenv.evd c) in
let status, metas, sigma, c = clenv_unify_binding_type ~metas:clenv.metam clenv.env clenv.evd c c_typ k_typ in
let sigma, metas = Meta.meta_assign k (c, status) metas sigma in
update_clenv_evd clenv sigma metas
let clenv_match_args bl clenv =
if List.is_empty bl then
clenv
else
let mvs = clenv_independent clenv in
check_bindings bl;
List.fold_left
(fun clenv {CAst.loc;v=(b,c)} ->
let k = meta_of_binder clenv loc mvs b in
match Meta.meta_opt_fvalue clenv.metam k with
| Some body ->
if EConstr.eq_constr clenv.evd body.rebus c then clenv
else error_already_defined b
| None ->
clenv_assign_binding clenv k c)
clenv bl
let error_not_right_number_missing_arguments n =
user_err
Pp.(strbrk "Not the right number of missing arguments (expected " ++
int n ++ str ").")
let clenv_constrain_dep_args hyps_only bl clenv =
if List.is_empty bl then
clenv
else
let occlist = clenv_dependent_gen ~metas:clenv.metam hyps_only clenv.env clenv.evd (clenv_type clenv) in
if Int.equal (List.length occlist) (List.length bl) then
List.fold_left2 clenv_assign_binding clenv occlist bl
else
if hyps_only then
let occlist' = clenv_dependent_gen ~metas:clenv.metam hyps_only ~iter:false clenv.env clenv.evd (clenv_type clenv) in
if Int.equal (List.length occlist') (List.length bl) then
List.fold_left2 clenv_assign_binding clenv occlist' bl
else
error_not_right_number_missing_arguments (List.length occlist)
else
error_not_right_number_missing_arguments (List.length occlist)
let pose_dependent_evars ?(with_evars=false) ~metas env sigma concl =
let dep_mvs = clenv_dependent_gen ~metas false env sigma concl in
if not (List.is_empty dep_mvs) && not with_evars then
raise
(RefinerError (env, sigma, UnresolvedBindings (List.map (Meta.meta_name metas) dep_mvs)));
clenv_pose_metas_as_evars ~metas env sigma dep_mvs
let clenv_pose_dependent_evars ?with_evars clenv =
let metas, sigma = pose_dependent_evars ?with_evars ~metas:clenv.metam clenv.env clenv.evd (clenv_type clenv) in
update_clenv_evd clenv sigma metas
type case_node = (case_info * EInstance.t * EConstr.t array * EConstr.case_return * EConstr.case_invert * EConstr.t)
module Internal =
struct
open Pp
open Constr
open Termops
open Retyping
let error_unsupported_deep_meta () =
user_err (strbrk "Application of lemmas whose beta-iota normal " ++
strbrk "form contains metavariables deep inside the term is not " ++
strbrk "supported; try \"refine\" instead.")
type proof =
| RfHole of metavariable
| RfGround of EConstr.t
| RfApp of proof * proof list
| RfProj of Projection.t * ERelevance.t * proof
exception NonLinear
let is_ground = function
| RfGround _ -> true
| RfHole _ | RfApp _ | RfProj _ -> false
let make_proof env sigma c =
let metas = ref Metaset.empty in
let rec make c = match EConstr.kind sigma c with
| Meta mv ->
if Metaset.mem mv !metas then raise NonLinear
else
let () = metas := Metaset.add mv !metas in
RfHole mv
| App (f, args) ->
let f = make f in
let args = Array.map_to_list (fun c -> make c) args in
if is_ground f && List.for_all is_ground args then RfGround c
else RfApp (f, args)
| Proj (p, r, a) ->
let a = make a in
if is_ground a then RfGround c else RfProj (p, r, a)
| _ ->
if occur_meta sigma c then error_unsupported_deep_meta ()
else RfGround c
in
try make c
with NonLinear -> raise (RefinerError (env, sigma, NonLinearProof c))
let rec as_constr = function
| RfHole mv -> EConstr.mkMeta mv
| RfGround c -> c
| RfApp (f, args) -> EConstr.mkApp (as_constr f, Array.map_of_list as_constr args)
| RfProj (p, r, c) -> EConstr.mkProj (p, r, as_constr c)
let mk_goal evars hyps concl =
let evars = Evd.push_future_goals evars in
let inst = EConstr.identity_subst_val hyps in
let (evars,evk) =
Evarutil.new_pure_evar ~src:(Loc.tag Evar_kinds.GoalEvar) ~typeclass_candidate:false hyps evars concl
in
let _, evars = Evd.pop_future_goals evars in
let ev = EConstr.mkEvar (evk,inst) in
(evk, ev, evars)
let rec mk_refgoals ~metas env sigma goalacc conclty trm = match trm with
| RfGround trm ->
let ty = Retyping.get_type_of env sigma trm in
(goalacc, ty, sigma, trm)
| RfHole mv ->
let conclty = match conclty with
| None -> Unification.Meta.meta_type metas env sigma mv
| Some conclty -> conclty
in
let conclty = nf_betaiota env sigma conclty in
let hyps = Environ.named_context_val env in
let (gl,ev,sigma) = mk_goal sigma hyps conclty in
gl::goalacc, conclty, sigma, ev
| RfApp (f, l) ->
let (acc',hdty,sigma,applicand) = match f with
| RfGround f when Termops.is_template_polymorphic_ref env sigma f ->
let ty =
let args, _ = List.split_when (fun p -> not (is_ground p)) l in
let args = Array.map_of_list as_constr args in
type_of_global_reference_knowing_parameters env sigma f args
in
goalacc, ty, sigma, f
| _ -> mk_refgoals ~metas env sigma goalacc None f
in
let ((acc'',conclty',sigma), args) = mk_arggoals ~metas env sigma acc' hdty l in
let ans = EConstr.applist (applicand, args) in
(acc'', conclty', sigma, ans)
| RfProj (p, r, c) ->
let (acc',cty,sigma,c') = mk_refgoals ~metas env sigma goalacc None c in
let c = EConstr.mkProj (p, r, c') in
let ty = get_type_of env sigma c in
(acc',ty,sigma,c)
and mk_arggoals ~metas env sigma goalacc funty allargs =
let foldmap (goalacc, funty, sigma) harg =
let t = whd_all ~metas:(meta_handler metas) env sigma funty in
match EConstr.kind sigma t with
| Prod (_, c1, b) ->
let (acc, hargty, sigma, arg) = mk_refgoals ~metas env sigma goalacc (Some c1) harg in
(acc, EConstr.Vars.subst1 arg b, sigma), arg
| _ ->
raise (RefinerError (env,sigma,CannotApply (t, as_constr harg)))
in
List.fold_left_map foldmap (goalacc, funty, sigma) allargs
let treat_case env sigma ci lbrty accu =
let open EConstr in
let fold (sigma, accu) (ctx, ty) =
let open Context.Rel.Declaration in
let brctx = Array.of_list (List.rev_map get_annot ctx) in
let args = Context.Rel.instance mkRel 0 ctx in
let ty = nf_betaiota env sigma (it_mkProd_or_LetIn ty ctx) in
let hyps = Environ.named_context_val env in
let (gl, ev, sigma) = mk_goal sigma hyps ty in
let br' = mkApp (ev, args) in
(sigma, gl :: accu), (brctx, br')
in
Array.fold_left_map fold (sigma, accu) lbrty
let std_refine ~metas env sigma cl r =
let r = make_proof env sigma r in
let (sgl, _, sigma, trm) = mk_refgoals ~metas env sigma [] (Some cl) r in
(sigma, sgl, trm)
type refiner_kind =
| Std of Meta.t * EConstr.t
| Case of case_node * (EConstr.rel_context * EConstr.t) array
let refiner_gen is_case =
let open Proofview.Notations in
Proofview.Goal.enter begin fun gl ->
let sigma = Proofview.Goal.sigma gl in
let env = Proofview.Goal.env gl in
let st = Proofview.Goal.state gl in
let cl = Proofview.Goal.concl gl in
let (sigma, sgl, c) = match is_case with
| Case ((ci, u, pms, p, iv, c), branches) ->
let ((sigma, accu), lf) = treat_case env sigma ci branches [] in
let ans = EConstr.mkCase (ci, u, pms, p, iv, c, lf) in
(sigma, accu, ans)
| Std (metas, r) ->
std_refine ~metas env sigma cl r
in
let map gl = Proofview.goal_with_state gl st in
let sgl = List.rev_map map sgl in
let evk = Proofview.Goal.goal gl in
let _ =
if not (Evarutil.occur_evar_upto sigma evk c) then ()
else Pretype_errors.error_occur_check env sigma evk c
in
let sigma = Evd.define evk c sigma in
Proofview.Unsafe.tclEVARS sigma <*>
Proofview.Unsafe.tclSETGOALS sgl
end
let refiner clenv =
let r = clenv_value clenv in
refiner_gen (Std (clenv.metam, r))
end
open Unification
let dft = default_unify_flags
let res_pf ?(with_evars=false) ?(with_classes=true) ?(flags=dft ()) clenv =
Proofview.Goal.enter begin fun gl ->
let concl = Proofview.Goal.concl gl in
let clenv = clenv_unique_resolver ~flags clenv concl in
let metas, sigma = pose_dependent_evars ~with_evars ~metas:clenv.metam clenv.env clenv.evd (clenv_type clenv) in
let sigma =
if with_classes then
let sigma =
Typeclasses.resolve_typeclasses ~filter:Typeclasses.all_evars
~fail:(not with_evars) clenv.env sigma
in
Typeclasses.make_unresolvables (fun x -> true) sigma
else sigma
in
let clenv = update_clenv_evd clenv sigma metas in
let r = clenv_value clenv in
Proofview.tclTHEN
(Proofview.Unsafe.tclEVARS sigma)
(Internal.refiner_gen (Std (metas, r)))
end
type case_analysis =
| RealCase of case_node
| PrimitiveEta of EConstr.t array
let build_case_analysis env sigma (ind, u) params pred indices indarg dep knd =
let open Inductiveops in
let open Context.Rel.Declaration in
let indf = make_ind_family ((ind, u), Array.to_list params) in
let projs = get_projections env ind in
let relevance = Retyping.relevance_of_sort knd in
let pnas, deparsign =
let arsign = get_arity env indf in
let r = Inductiveops.relevance_of_inductive_family env indf in
let depind = build_dependent_inductive env indf in
let deparsign = LocalAssum (make_annot Anonymous r,depind)::arsign in
let set_names env l =
let ident_hd env ids t na =
let na = Namegen.named_hd env (Evd.from_env env) t na in
Namegen.next_name_away na ids
in
let fold d (ids, l) =
let id = ident_hd env ids (get_type d) (get_name d) in
(Id.Set.add id ids, set_name (Name id) d :: l)
in
snd (List.fold_right fold l (Id.Set.empty,[]))
in
let pctx =
let deparsign = set_names env deparsign in
if dep then deparsign
else LocalAssum (make_annot Anonymous r, depind) :: List.tl deparsign
in
let pnas = Array.of_list (List.rev_map get_annot pctx) in
pnas, deparsign
in
match projs with
| None ->
let ci = make_case_info env ind RegularStyle in
let pbody =
mkApp
(pred,
if dep then Context.Rel.instance mkRel 0 deparsign
else Context.Rel.instance mkRel 1 (List.tl deparsign)) in
let iv =
if Typeops.should_invert_case env (ERelevance.kind sigma relevance) ci
then CaseInvert { indices = indices }
else NoInvert
in
RealCase (ci, u, params, ((pnas, pbody), relevance), iv, indarg)
| Some ps ->
let args = Array.map (fun (p,r) ->
let r = EConstr.Vars.subst_instance_relevance u (ERelevance.make r) in
mkProj (Projection.make p true, r, indarg))
ps
in
PrimitiveEta args
let case_pf ?(with_evars=false) ~dep (indarg, typ) =
Proofview.Goal.enter begin fun gl ->
let env = Proofview.Goal.env gl in
let sigma = Proofview.Goal.sigma gl in
let concl = Proofview.Goal.concl gl in
let hd, args = decompose_app sigma typ in
let sigma, _ = Typing.checked_appvect env sigma hd args in
let ind, u = destInd sigma hd in
let s = Retyping.get_sort_of env sigma concl in
let (mib, mip) = Inductive.lookup_mind_specif env ind in
let params, indices = Array.chop mib.mind_nparams args in
let sigma = Indrec.check_valid_elimination env sigma (ind, u) ~dep s in
let indf =
Inductiveops.make_ind_family ((ind, u), Array.to_list params)
in
let typP = Inductiveops.make_arity env sigma dep indf s in
let mvP = new_meta () in
let metas = Meta.meta_declare mvP typP Meta.empty in
let depargs = Array.append indices [|indarg|] in
let templtyp = if dep then mkApp (mkMeta mvP, depargs) else mkApp (mkMeta mvP, indices) in
let flags = elim_flags () in
let metas, sigma = w_unify_meta_types ~metas ~flags env sigma in
let metas, sigma = w_unify ~metas ~flags env sigma CUMUL templtyp concl in
let pred = Meta.meta_instance metas env sigma (mkMeta mvP) in
let branches =
let open Inductiveops in
let constrs = get_constructors env indf in
let get_branch cs =
let base = mkApp (pred, cs.cs_concl_realargs) in
let argctx = cs.cs_args in
if dep then
let argctx = Namegen.name_context env sigma argctx in
(argctx, applist (base, [build_dependent_constructor cs]))
else
(argctx, base)
in
Array.map get_branch constrs
in
let body = build_case_analysis env sigma (ind, u) params pred indices indarg dep s in
let sigma =
Typeclasses.resolve_typeclasses ~filter:Typeclasses.all_evars
~fail:(not with_evars) env sigma
in
let sigma = Typeclasses.make_unresolvables (fun x -> true) sigma in
let rec nf_betaiota c = EConstr.map sigma nf_betaiota (whd_betaiota ~metas:(meta_handler metas) env sigma c) in
let arg = match body with
| RealCase (ci, u, pms, (p,r), iv, c) ->
let c = nf_betaiota c in
let pms = Array.map nf_betaiota pms in
let p = on_snd nf_betaiota p in
Internal.Case ((ci, u, pms, (p,r), iv, c), branches)
| PrimitiveEta args ->
let mv = new_meta () in
let (ctx, t) = branches.(0) in
let metas = Meta.meta_declare mv (it_mkProd_or_LetIn t ctx) metas in
Internal.Std (metas, mkApp (mkMeta mv, Array.map nf_betaiota args))
in
Proofview.tclTHEN
(Proofview.Unsafe.tclEVARS sigma)
(Internal.refiner_gen arg)
end
let fail_quick_core_unif_flags = {
modulo_conv_on_closed_terms = Some TransparentState.full;
use_metas_eagerly_in_conv_on_closed_terms = false;
use_evars_eagerly_in_conv_on_closed_terms = false;
modulo_delta = TransparentState.empty;
modulo_delta_types = TransparentState.full;
check_applied_meta_types = false;
use_pattern_unification = false;
use_meta_bound_pattern_unification = true;
allowed_evars = Evarsolve.AllowedEvars.all;
restrict_conv_on_strict_subterms = false;
modulo_betaiota = false;
modulo_eta = true;
}
let fail_quick_unif_flags = {
core_unify_flags = fail_quick_core_unif_flags;
merge_unify_flags = fail_quick_core_unif_flags;
subterm_unify_flags = fail_quick_core_unif_flags;
allow_K_in_toplevel_higher_order_unification = false;
resolve_evars = false
}
let unify ?(flags=fail_quick_unif_flags) ~cv_pb m =
Proofview.Goal.enter begin fun gl ->
let env = Tacmach.pf_env gl in
let sigma = Proofview.Goal.sigma gl in
let n = Tacmach.pf_concl gl in
try
let _, sigma = w_unify ~metas:Meta.empty env sigma cv_pb ~flags m n in
Proofview.Unsafe.tclEVARSADVANCE sigma
with e when CErrors.noncritical e ->
let info = Exninfo.reify () in
Proofview.tclZERO ~info e
end
let make_clenv_binding_gen hyps_only n env sigma (c,t) = function
| ImplicitBindings largs ->
let clause = mk_clenv_from_env env sigma n (c,t) in
clenv_constrain_dep_args hyps_only largs clause
| ExplicitBindings lbind ->
let clause = mk_clenv_from_env env sigma n (c, t) in clenv_match_args lbind clause
| NoBindings ->
mk_clenv_from_env env sigma n (c,t)
let make_clenv_binding_apply env sigma n = make_clenv_binding_gen true n env sigma
let make_clenv_binding env sigma = make_clenv_binding_gen false None env sigma
let pr_clenv clenv =
let prc = Termops.Internal.print_constr_env clenv.env clenv.evd in
Pp.(h (str"TEMPL: " ++ prc clenv.templval ++
str" : " ++ prc (fst clenv.templtyp) ++ fnl () ++
pr_evar_map (Some 2) clenv.env clenv.evd))