aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2016-03-20 18:08:42 +0100
committerPierre-Marie Pédrot2016-03-20 18:33:06 +0100
commitb2a2cb77f38549a25417d199e90d745715f3e465 (patch)
tree03af99f1fe1233ce4fc8e1defd927b4e845218dc /engine
parent32bf41967bbcd2bf21dea8a6b4f5f500eb15aacc (diff)
Making Proofview independent of Logic.
Diffstat (limited to 'engine')
-rw-r--r--engine/proofview_monad.ml4
-rw-r--r--engine/proofview_monad.mli4
2 files changed, 4 insertions, 4 deletions
diff --git a/engine/proofview_monad.ml b/engine/proofview_monad.ml
index 2b9db60b4f..6f52b3ee90 100644
--- a/engine/proofview_monad.ml
+++ b/engine/proofview_monad.ml
@@ -154,8 +154,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} *)
diff --git a/engine/proofview_monad.mli b/engine/proofview_monad.mli
index 7a6ea10fe3..0aff0a7207 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} *)