blob: 0f24915e30319f75e8697d774d32c51e738ada75 (
plain)
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
|
open Pretyping
open Evd
open Environ
open Term
open Topconstr
open Names
open Libnames
open Pp
open Vernacexpr
open Constrintern
val interp_gen :
typing_constraint ->
evar_map ref ->
env ->
?impls:internalization_env ->
?allow_patvar:bool ->
?ltacvars:ltac_sign ->
constr_expr -> constr
val interp_constr :
evar_map ref ->
env -> constr_expr -> constr
val interp_type_evars :
evar_map ref ->
env ->
?impls:internalization_env ->
constr_expr -> constr
val interp_casted_constr_evars :
evar_map ref ->
env ->
?impls:internalization_env ->
constr_expr -> types -> constr
val interp_open_constr :
evar_map ref -> env -> constr_expr -> constr
val interp_constr_judgment :
evar_map ref ->
env ->
constr_expr -> unsafe_judgment
val list_chop_hd : int -> 'a list -> 'a list * 'a * 'a list
val interp_binder : Evd.evar_map ref ->
Environ.env -> Names.name -> Topconstr.constr_expr -> Term.constr
val telescope :
(Names.name * 'a option * Term.types) list ->
Term.types * (Names.name * Term.types option * Term.types) list *
Term.constr
val build_wellfounded :
Names.identifier * 'a * Topconstr.local_binder list *
Topconstr.constr_expr * Topconstr.constr_expr ->
Topconstr.constr_expr ->
Topconstr.constr_expr -> 'b -> 'c -> Subtac_obligations.progress
val build_recursive :
(fixpoint_expr * decl_notation list) list -> bool -> unit
val build_corecursive :
(cofixpoint_expr * decl_notation list) list -> bool -> unit
|