aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/tacmach.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-11-06 17:21:44 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-02-14 17:25:30 +0100
commite27949240f5b1ee212e7d0fe3326a21a13c4abb0 (patch)
treebf076ea31e6ca36cc80e0f978bc63d112e183725 /proofs/tacmach.ml
parentb365304d32db443194b7eaadda63c784814f53f1 (diff)
Typing API using EConstr.
Diffstat (limited to 'proofs/tacmach.ml')
-rw-r--r--proofs/tacmach.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/proofs/tacmach.ml b/proofs/tacmach.ml
index b63b2ce28..148f9d675 100644
--- a/proofs/tacmach.ml
+++ b/proofs/tacmach.ml
@@ -93,8 +93,8 @@ let pf_nf = pf_reduce' simpl
let pf_nf_betaiota = pf_reduce' (fun _ -> nf_betaiota)
let pf_compute = pf_reduce' compute
let pf_unfoldn ubinds = pf_reduce' (unfoldn ubinds)
-let pf_unsafe_type_of = pf_reduce unsafe_type_of
-let pf_type_of = pf_reduce type_of
+let pf_unsafe_type_of = pf_reduce' unsafe_type_of
+let pf_type_of = pf_reduce' type_of
let pf_get_type_of = pf_reduce Retyping.get_type_of
let pf_conv_x gl = pf_apply test_conversion gl Reduction.CONV
@@ -175,10 +175,10 @@ module New = struct
let pf_concl = Proofview.Goal.concl
let pf_unsafe_type_of gl t =
- pf_apply unsafe_type_of gl t
+ pf_apply unsafe_type_of gl (EConstr.of_constr t)
let pf_type_of gl t =
- pf_apply type_of gl t
+ pf_apply type_of gl (EConstr.of_constr t)
let pf_conv_x gl t1 t2 = pf_apply is_conv gl t1 t2