blob: 64b8212b90d4373ec72c1ddc3e0647ab042ffcd9 (
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
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
open Names
open Vernacexpr
open Constrexpr
(** {6 Parameters/Assumptions} *)
val interp_assumption
: program_mode:bool
-> Environ.env
-> Evd.evar_map
-> Constrintern.internalization_env
-> Constrexpr.local_binder_expr list
-> constr_expr
-> Evd.evar_map * EConstr.t * Impargs.manual_implicits
val do_assumptions
: program_mode:bool
-> poly:bool
-> scope:Locality.locality
-> kind:Decls.assumption_object_kind
-> Declaremods.inline
-> (ident_decl list * constr_expr) with_coercion list
-> unit
val declare_variable
: coercion_flag
-> kind:Decls.assumption_object_kind
-> Constr.types
-> Impargs.manual_implicits
-> Glob_term.binding_kind
-> variable CAst.t
-> unit
val declare_axiom
: coercion_flag
-> poly:bool
-> local:Locality.import_status
-> kind:Decls.assumption_object_kind
-> Constr.types
-> Entries.universes_entry * UnivNames.universe_binders
-> Impargs.manual_implicits
-> Declaremods.inline
-> variable CAst.t
-> GlobRef.t * Univ.Instance.t
(** Context command *)
val context
: poly:bool
-> local_binder_expr list
-> unit
|