aboutsummaryrefslogtreecommitdiff
path: root/proofs/proofview.ml
diff options
context:
space:
mode:
Diffstat (limited to 'proofs/proofview.ml')
-rw-r--r--proofs/proofview.ml20
1 files changed, 6 insertions, 14 deletions
diff --git a/proofs/proofview.ml b/proofs/proofview.ml
index a97add1ce7..75725e47c4 100644
--- a/proofs/proofview.ml
+++ b/proofs/proofview.ml
@@ -911,6 +911,12 @@ module Goal = struct
tclZERO e
end
+ let normalize { self } =
+ Proof.current >>= fun env ->
+ tclEVARMAP >>= fun sigma ->
+ let (gl,sigma) = Goal.eval nf_enter_t env sigma self in
+ tclTHEN (V82.tclEVARS sigma) (tclUNIT gl)
+
let enter_t f = Goal.enter begin fun env sigma concl self ->
f {env=env;sigma=sigma;concl=concl;self=self}
end
@@ -928,20 +934,6 @@ module Goal = struct
tclZERO e
end
- let nf_goals =
- Proof.current >>= fun env ->
- Proof.get >>= fun step ->
- let sigma = step.solution in
- let map goal =
- match Goal.advance sigma goal with
- | None -> None (** ppedrot: Is this check really necessary? *)
- | Some goal ->
- (** The sigma is unchanged. *)
- let (gl, _) = Goal.eval nf_enter_t env sigma goal in
- Some gl
- in
- tclUNIT (List.map_filter map step.comb)
-
let goals =
Proof.current >>= fun env ->
Proof.get >>= fun step ->