diff options
| author | Pierre-Marie Pédrot | 2016-03-20 18:08:42 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-03-20 18:33:06 +0100 |
| commit | b2a2cb77f38549a25417d199e90d745715f3e465 (patch) | |
| tree | 03af99f1fe1233ce4fc8e1defd927b4e845218dc /engine | |
| parent | 32bf41967bbcd2bf21dea8a6b4f5f500eb15aacc (diff) | |
Making Proofview independent of Logic.
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/proofview_monad.ml | 4 | ||||
| -rw-r--r-- | engine/proofview_monad.mli | 4 |
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} *) |
