aboutsummaryrefslogtreecommitdiffhomepage
path: root/engine/proofview_monad.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-03-20 21:21:32 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-03-20 21:23:23 +0100
commit6afe572a4448e50f18e408097dd9ed03cc432d39 (patch)
tree44cb29daa6147426419392e48b9d7c33c7c5caf0 /engine/proofview_monad.mli
parent48e4831fa56e3b0acd92aabdb78847696b84daf7 (diff)
parent6d87fd89abdf17ddd4864386d66bb06f0d0a151f (diff)
Moving the lowest parts of pretyping/ (Evarutil & Proofview) to engine/.
Some functions exported by Evarutil essentially used by the unification engine were moved to a new file Evardefine. Their presence in Evarutil was not making much sense. Moreover, the Refine module of the Proofview file was turned into a proper file in pretyping/. This is because this part of the code was relying on the typing primitives from Pretyping.
Diffstat (limited to 'engine/proofview_monad.mli')
-rw-r--r--engine/proofview_monad.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/proofview_monad.mli b/engine/proofview_monad.mli
index 7a6ea10fe..0aff0a720 100644
--- a/engine/proofview_monad.mli
+++ b/engine/proofview_monad.mli
@@ -70,8 +70,8 @@ end
focused goals. *)
type proofview = {
solution : Evd.evar_map;
- comb : Goal.goal list;
- shelf : Goal.goal list;
+ comb : Evar.t list;
+ shelf : Evar.t list;
}
(** {6 Instantiation of the logic monad} *)