aboutsummaryrefslogtreecommitdiff
path: root/kernel/typeops.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-10-01 16:10:37 +0200
committerPierre-Marie Pédrot2018-11-20 16:11:27 +0100
commitc4ec9bd2c8a31f5eddea87bbc3f1605ca731d598 (patch)
tree200510ce0fc2b4b3bb5dc34c4f736c76c7433946 /kernel/typeops.ml
parent2d81a99e14d32f9f79ae617986148db3a36707e7 (diff)
Use a closure for the domain argument of FProd.
The use of a term is not needed for the fast typing algorithm of the application case, so this tweak brings the best of both worlds.
Diffstat (limited to 'kernel/typeops.ml')
-rw-r--r--kernel/typeops.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/typeops.ml b/kernel/typeops.ml
index 956e5f7947..a87355e927 100644
--- a/kernel/typeops.ml
+++ b/kernel/typeops.ml
@@ -164,7 +164,7 @@ let type_of_apply env func funt argsv argstv =
| FProd (_, c1, c2, e) ->
let arg = argsv.(i) in
let argt = argstv.(i) in
- let c1 = term_of_fconstr (mk_clos e c1) in
+ let c1 = term_of_fconstr c1 in
begin match conv_leq false env argt c1 with
| () -> apply_rec (i+1) (mk_clos (Esubst.subs_cons ([| inject arg |], e)) c2)
| exception NotConvertible ->