diff options
| author | Arnaud Spiwack | 2014-07-22 17:15:43 +0200 |
|---|---|---|
| committer | Arnaud Spiwack | 2014-07-23 17:42:36 +0200 |
| commit | 1fd8e23da73422b17209e2d69a19dca6789bcaed (patch) | |
| tree | 37c854c17adf96424ec95555b24c5e61033f98c2 /proofs/proof_global.mli | |
| parent | aa63497700bb2e75767c1891a961fc06ba329065 (diff) | |
Change the interface of proof_global to take an evar_map instead of a universe context to start proofs.
It was kind of awkward to work with for non-traditionnal kinds of proofs: if you have an evar_universe_context, you got it from a sigma anyway.
Diffstat (limited to 'proofs/proof_global.mli')
| -rw-r--r-- | proofs/proof_global.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proofs/proof_global.mli b/proofs/proof_global.mli index 2b54b24ef2..be01229c9f 100644 --- a/proofs/proof_global.mli +++ b/proofs/proof_global.mli @@ -78,13 +78,13 @@ type closed_proof = proof_object * proof_terminator closing commands and the xml plugin); [terminator] is used at the end of the proof to close the proof. *) val start_proof : - Names.Id.t -> Decl_kinds.goal_kind -> Evd.evar_universe_context -> (Environ.env * Term.types) list -> + Evd.evar_map -> Names.Id.t -> Decl_kinds.goal_kind -> (Environ.env * Term.types) list -> proof_terminator -> unit (** Like [start_proof] except that there may be dependencies between initial goals. *) val start_dependent_proof : - Names.Id.t -> Decl_kinds.goal_kind -> Evd.evar_universe_context -> Proofview.telescope -> + Evd.evar_map -> Names.Id.t -> Decl_kinds.goal_kind -> Proofview.telescope -> proof_terminator -> unit (* Takes a function to add to the exceptions data relative to the |
