aboutsummaryrefslogtreecommitdiff
path: root/proofs/proof.mli
diff options
context:
space:
mode:
Diffstat (limited to 'proofs/proof.mli')
-rw-r--r--proofs/proof.mli6
1 files changed, 2 insertions, 4 deletions
diff --git a/proofs/proof.mli b/proofs/proof.mli
index a0d4759bfc..f487595dac 100644
--- a/proofs/proof.mli
+++ b/proofs/proof.mli
@@ -43,8 +43,6 @@ type data =
(** Entry for the proofview *)
; stack : (Evar.t list * Evar.t list) list
(** A representation of the focus stack *)
- ; shelf : Evar.t list
- (** A representation of the shelf *)
; name : Names.Id.t
(** The name of the theorem whose proof is being constructed *)
; poly : bool;
@@ -76,8 +74,8 @@ val partial_proof : t -> EConstr.constr list
val compact : t -> t
-(** [update_sigma_env] lifts [Evd.update_sigma_env] to the proof *)
-val update_sigma_env : t -> Environ.env -> t
+(** [update_sigma_univs] lifts [UState.update_sigma_univs] to the proof *)
+val update_sigma_univs : UGraph.t -> t -> t
(* Returns the proofs (with their type) of the initial goals.
Raises [UnfinishedProof] is some goals remain to be considered.