blob: 38a14c010779cafa37a7c3324e5836b7e3dab5ee (
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
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
|
(* $Id$ *)
(*i*)
open Names
open Term
open Sign
open Declarations
open Inductive
(*i*)
(* This module provides the official functions to declare new variables,
parameters, constants and inductive types. Using the following functions
will add the entries in the global environment (module [Global]), will
register the declarations in the library (module [Lib]) --- so that the
reset works properly --- and will fill some global tables such as
[Nametab] and [Impargs]. *)
type strength =
| DischargeAt of dir_path
| NeverDischarge
type section_variable_entry =
| SectionLocalDef of constr
| SectionLocalAssum of constr
type sticky = bool
type variable_declaration = section_variable_entry * strength * sticky
val declare_variable : identifier -> variable_declaration -> unit
type constant_declaration_type =
| ConstantEntry of constant_entry
| ConstantRecipe of Cooking.recipe
type opacity = bool
type constant_declaration = constant_declaration_type * strength * opacity
val declare_constant : identifier -> constant_declaration -> unit
val declare_parameter : identifier -> constr -> unit
val declare_mind : mutual_inductive_entry -> section_path
val declare_eliminations : section_path -> int -> unit
val out_inductive : Libobject.obj -> mutual_inductive_entry
val make_strength : string list -> strength
val make_strength_0 : unit -> strength
val make_strength_1 : unit -> strength
val make_strength_2 : unit -> strength
(*s Corresponding test and access functions. *)
val is_constant : section_path -> bool
val constant_strength : section_path -> strength
val constant_or_parameter_strength : section_path -> strength
val out_variable : Libobject.obj -> identifier * variable_declaration
val get_variable : section_path -> named_declaration * strength * sticky
val variable_strength : qualid -> strength
(*s [global_reference k id] returns the object corresponding to
the name [id] in the global environment. It may be a constant,
an inductive, a construtor or a variable. It is instanciated
on the current environment of variables. [Nametab.sp_of_id] is used
to find the corresponding object.
[construct_reference] is a version which looks for variables in a
given environment instead of looking in the current global environment. *)
val extract_instance : global_reference -> constr array -> constr array
val constr_of_reference :
'a Evd.evar_map -> Environ.env -> global_reference -> constr
val global_qualified_reference : qualid -> constr
val global_absolute_reference : section_path -> constr
val construct_qualified_reference : Environ.env -> qualid -> constr
val construct_absolute_reference : Environ.env -> section_path -> constr
(* This should eventually disappear *)
val global_reference : path_kind -> identifier -> constr
val construct_reference : Environ.env -> path_kind -> identifier -> constr
val is_global : identifier -> bool
val path_of_inductive_path : inductive_path -> section_path
val path_of_constructor_path : constructor_path -> section_path
(* Look up function for the default elimination constant *)
val elimination_suffix : sorts -> string
val lookup_eliminator : Environ.env -> section_path -> sorts -> constr
|