blob: f0719d2f1e06c6696559be4308fc3d2d3b3054bf (
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
|
(* $Id$ *)
(*i*)
open Names
open Term
open Evd
open Sign
open Environ
(*i*)
(* Instantiation of constants and inductives on their real arguments. *)
val instantiate_constr :
var_context -> constr -> constr list -> constr
val instantiate_type :
var_context -> typed_type -> constr list -> typed_type
(*s [constant_value env c] raises [NotEvaluableConst Opaque] if
[c] is opaque and [NotEvaluableConst NoBody] if it has no
body and [Not_found] if it does not exist in [env] *)
type const_evaluation_result = NoBody | Opaque
exception NotEvaluableConst of const_evaluation_result
val constant_value : env -> constant -> constr
val constant_type : env -> 'a evar_map -> constant -> typed_type
val constant_opt_value : env -> constant -> constr option
(*s [existential_value sigma ev] raises [NotInstantiatedEvar] if [ev] has
no body and [Not_found] if it does not exist in [sigma] *)
exception NotInstantiatedEvar
val existential_value : 'a evar_map -> existential -> constr
val existential_type : 'a evar_map -> existential -> constr
val existential_opt_value : 'a evar_map -> existential -> constr option
|