diff options
| author | Maxime Dénès | 2017-06-23 17:04:53 +0200 |
|---|---|---|
| committer | Maxime Dénès | 2017-06-23 17:04:53 +0200 |
| commit | f5a746eca3866b4652ead49548d08b2fe460960c (patch) | |
| tree | 8bdbc6aad06fe2ba7460ad39a743519df3aa6e8b /vernac/declareDef.mli | |
| parent | 8d92701f1a017354504c84d60c9e76da50feaf49 (diff) | |
| parent | ec8523065abfb68aff9bd3664869224419885385 (diff) | |
Merge PR#762: [vernac] Fix unneeded mutual references in Obligations
Diffstat (limited to 'vernac/declareDef.mli')
| -rw-r--r-- | vernac/declareDef.mli | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vernac/declareDef.mli b/vernac/declareDef.mli new file mode 100644 index 0000000000..5dea0ba272 --- /dev/null +++ b/vernac/declareDef.mli @@ -0,0 +1,19 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2017 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +open Decl_kinds +open Names + +val get_locality : Id.t -> kind:string -> Decl_kinds.locality -> bool + +val declare_definition : Id.t -> definition_kind -> + Safe_typing.private_constants Entries.definition_entry -> Universes.universe_binders -> Impargs.manual_implicits -> + Globnames.global_reference Lemmas.declaration_hook -> Globnames.global_reference + +val declare_fix : ?opaque:bool -> definition_kind -> Universes.universe_binders -> Univ.universe_context -> Id.t -> + Safe_typing.private_constants Entries.proof_output -> Constr.types -> Impargs.manual_implicits -> Globnames.global_reference |
