]> matita.cs.unibo.it Git - helm.git/blob - matita/components/ng_refiner/nCicMetaSubst.ml
sync with stable:
[helm.git] / matita / components / ng_refiner / nCicMetaSubst.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id$ *)
13
14 let debug = ref false;;
15 let indent = ref "";;
16 let times = ref [];;
17 let pp s =
18  if !debug then
19   prerr_endline (Printf.sprintf "%-20s" !indent ^ " " ^ Lazy.force s)
20 ;;
21 let inside c =
22  if !debug then
23   begin
24    let time1 = Unix.gettimeofday () in
25    indent := !indent ^ String.make 1 c;
26    times := time1 :: !times;
27    prerr_endline ("{{{" ^ !indent ^ " ")
28   end
29 ;;
30 let outside exc_opt =
31  if !debug then
32   begin
33    let time2 = Unix.gettimeofday () in
34    let time1 =
35     match !times with time1::tl -> times := tl; time1 | [] -> assert false in
36    prerr_endline ("}}} " ^ string_of_float (time2 -. time1));
37    (match exc_opt with
38    | Some e ->  prerr_endline ("exception raised: " ^ Printexc.to_string e)
39    | None -> ());
40    try
41     indent := String.sub !indent 0 (String.length !indent -1)
42    with
43     Invalid_argument _ -> indent := "??"; ()
44   end
45 ;;
46
47 exception MetaSubstFailure of string Lazy.t
48 exception Uncertain of string Lazy.t
49
50 let newmeta,maxmeta = 
51   let maxmeta = ref 0 in
52   (fun () -> incr maxmeta; !maxmeta),
53   (fun () -> !maxmeta)
54 ;;
55
56 exception NotInTheList;;
57
58 let position to_skip n (shift, lc) =
59   match lc with
60   | NCic.Irl _ when to_skip > 0 -> assert false  (* unclear to me *)
61   | NCic.Irl len when n <= shift || n > shift + len -> raise NotInTheList
62   | NCic.Irl _ -> n - shift
63   | NCic.Ctx tl ->
64       let rec aux to_skip k = function 
65          | [] -> raise NotInTheList
66          | _ :: tl when to_skip > 0 -> aux (to_skip - 1) (k+1) tl
67          | (NCic.Rel m)::_ when m + shift = n -> k
68          | _::tl -> aux to_skip (k+1) tl 
69       in
70        aux to_skip 1 tl
71 ;;
72
73 let pack_lc orig = 
74   let rec are_contiguous k = function
75     | [] -> true
76     | (NCic.Rel j) :: tl when j = k+1 -> are_contiguous j tl
77     | _ -> false
78   in
79   match orig with
80   | _, NCic.Ctx [] -> 0, NCic.Irl 0
81   | shift, NCic.Ctx (NCic.Rel k::tl as l) when are_contiguous k tl ->
82       shift+k-1, NCic.Irl (List.length l)
83   | _ -> orig
84 ;;
85
86
87
88 let mk_perforated_irl shift len restrictions =
89   let rec aux n =
90     if n = 0 then [] else
91      if List.mem (n+shift) restrictions then aux (n-1)
92      else (NCic.Rel n) :: aux (n-1)
93   in
94     pack_lc (shift, NCic.Ctx (List.rev (aux len)))
95 ;;
96
97 exception Occur;;
98
99 let purge_restricted restrictions more_restrictions l =
100  if more_restrictions = [] then l
101  else
102   begin
103    pp (lazy ("TO BE RESTRICTED: " ^ 
104     (String.concat "," (List.map string_of_int restrictions))));
105    pp (lazy ("MORE RESTRICTIONS: " ^ 
106     (String.concat "," (List.map string_of_int more_restrictions))));
107    let shift,lc = l in
108    let lc = NCicUtils.expand_local_context lc in
109     let rec aux n lc =
110      match lc with
111         [] -> []
112       | _ when List.mem n restrictions -> aux (n+1) lc
113       | _::tl when List.mem n more_restrictions -> aux (n+1) tl
114       | he::tl -> he::aux (n+1) tl
115     in
116     pack_lc (shift, NCic.Ctx (aux 1 lc))
117   end
118 ;;
119
120 let rec force_does_not_occur metasenv subst restrictions t =
121  let rec aux k ms = function
122     | NCic.Rel r when List.mem (r - k) restrictions -> raise Occur
123     | NCic.Rel r as orig ->
124         let amount = 
125           List.length (List.filter (fun x -> x < r - k) restrictions) 
126         in
127         if amount > 0 then ms, NCic.Rel (r - amount) else ms, orig
128     | NCic.Meta (n, (shift,lc as l)) as orig ->
129        (try
130          let _,_,bo,_ = NCicUtils.lookup_subst n subst in
131           aux k ms (NCicSubstitution.subst_meta l bo)
132         with
133          NCicUtils.Subst_not_found _ ->
134           (* we ignore the subst since restrict will take care of already
135            * instantiated/restricted metavariabels *)
136           let l = NCicUtils.expand_local_context lc in
137           let sl = List.map (NCicSubstitution.lift shift) l in 
138           let (metasenv,subst as ms), _, restrictions_for_n, l' =
139              List.fold_right
140                (fun t (ms, i, restrictions_for_n, l) ->
141                  try 
142               (*pp (lazy ("L'ORLO DELLA FOSSA: k= " ^ string_of_int k ^ " shift=" ^
143                string_of_int shift ^ " t=" ^ NCicPp.ppterm ~metasenv ~subst ~context:[] t));*)
144                    let ms, t = aux k ms t in
145               (*pp (lazy ("LA FOSSA: " ^ NCicPp.ppterm ~metasenv ~subst ~context:[] t));*)
146                    ms, i-1, restrictions_for_n, t::l
147                  with Occur ->
148                    ms, i-1, i::restrictions_for_n, l)
149                sl (ms, List.length l, [], [])
150           in
151           if restrictions_for_n = [] then
152             ms, if sl = l' then orig else (
153                 (*pp (lazy ("FINITO: " ^ NCicPp.ppterm ~metasenv:[] ~subst:[]
154                   ~context:[] (NCic.Meta (n,pack_lc (0, NCic.Ctx l')))));*)
155               NCic.Meta (n, pack_lc (0, NCic.Ctx l'))
156             )
157           else
158             let l' = pack_lc (0, NCic.Ctx l') in
159             let _ = pp (lazy ("restrictions for n are:" ^ String.concat "," (List.map string_of_int restrictions_for_n))) in
160             let metasenv, subst, newmeta, more_restricted = 
161               restrict metasenv subst n restrictions_for_n in
162             let _ = pp (lazy ("more restricted: " ^String.concat "," (List.map string_of_int more_restricted))) in
163             let l' = purge_restricted restrictions more_restricted l' in
164               (metasenv, subst), NCic.Meta (newmeta, l'))
165     | t -> NCicUntrusted.map_term_fold_a (fun _ k -> k+1) k aux ms t
166  in
167    aux 0 (metasenv,subst) t 
168
169 and force_does_not_occur_in_context metasenv subst restrictions = function
170   | name, NCic.Decl t as orig ->
171       (* pp (lazy ("CCC: hd is" ^ NCicPp.ppterm ~metasenv:[] ~subst:[] ~context:[] t ^
172       "\nCCC: restrictions are:" ^ String.concat "," (List.map string_of_int restrictions)));*)
173       let (metasenv, subst), t' =
174         force_does_not_occur metasenv subst restrictions t in
175       metasenv, subst, (if t == t' then orig else (name,NCic.Decl t'))
176   | name, NCic.Def (bo, ty) as orig ->
177       let (metasenv, subst), bo' =
178         force_does_not_occur metasenv subst restrictions bo in
179       let (metasenv, subst), ty' =
180         force_does_not_occur metasenv subst restrictions ty in
181       metasenv, subst, 
182        (if bo == bo' && ty == ty' then orig else (name, NCic.Def (bo', ty')))
183
184 and erase_in_context metasenv subst pos restrictions = function
185   | [] -> metasenv, subst, restrictions, []
186   | hd::tl as orig ->
187       let metasenv, subst, restricted, tl' = 
188         erase_in_context metasenv subst (pos+1) restrictions tl in
189       if List.mem pos restricted then
190         metasenv, subst, restricted, tl'
191       else
192         try
193           let metasenv, subst, hd' =
194             let delifted_restricted = 
195               List.map ((+) ~-pos) (List.filter ((<=) pos) restricted) in
196             force_does_not_occur_in_context 
197               metasenv subst delifted_restricted hd
198           in
199            metasenv, subst, restricted, 
200             (if hd' == hd && tl' == tl then orig else (hd' :: tl'))
201         with Occur ->
202             metasenv, subst, (pos :: restricted), tl'
203
204 and restrict metasenv subst i (restrictions as orig) =
205   assert (restrictions <> []);
206   try 
207     let name, ctx, bo, ty = NCicUtils.lookup_subst i subst in
208       try 
209         let metasenv, subst, restrictions, newctx = 
210           erase_in_context metasenv subst 1 restrictions ctx in
211         let (metasenv, subst), newty =  
212           force_does_not_occur metasenv subst restrictions ty in
213         let (metasenv, subst), newbo =  
214           force_does_not_occur metasenv subst restrictions bo in
215         let j = newmeta () in
216         let subst_entry_j = j, (name, newctx, newbo, newty) in
217         let reloc_irl = mk_perforated_irl 0 (List.length ctx) restrictions in
218         let subst_entry_i = i, (name, ctx, NCic.Meta (j, reloc_irl), ty) in
219         let new_subst = 
220           subst_entry_j :: List.map 
221             (fun (n,_) as orig -> if i = n then subst_entry_i else orig) subst
222         in
223         let diff = List.filter (fun x -> not (List.mem x orig)) restrictions in
224         metasenv, new_subst, j, diff
225       with Occur -> raise (MetaSubstFailure (lazy (Printf.sprintf
226             ("Cannot restrict the context of the metavariable ?%d over "^^
227             "the hypotheses %s since ?%d is already instantiated "^^
228             "with %s and at least one of the hypotheses occurs in "^^
229             "the substituted term") i  (String.concat ", " 
230             (List.map (fun x -> fst (List.nth ctx (x-1))) restrictions)) i
231             (NCicPp.ppterm ~metasenv ~subst ~context:ctx bo))))
232   with NCicUtils.Subst_not_found _ -> 
233     try 
234       let name, ctx, ty = NCicUtils.lookup_meta i metasenv in
235       try
236         let metasenv, subst, restrictions, newctx = 
237           erase_in_context metasenv subst 1 restrictions ctx in
238         let (metasenv, subst), newty =  
239           force_does_not_occur metasenv subst restrictions ty in
240         let j = newmeta () in
241         let metasenv_entry = j, (name, newctx, newty) in
242         let reloc_irl = 
243           mk_perforated_irl 0 (List.length ctx) restrictions in
244         let subst_entry = i, (name, ctx, NCic.Meta (j, reloc_irl), ty) in
245          (* pp (lazy ("BBB: dopo1 \n" ^  NCicPp.ppsubst ~metasenv [subst_entry]));
246           pp (lazy ("BBB: dopo2 \n" ^  NCicPp.ppsubst ~metasenv (subst_entry::subst)));
247           pp (lazy ("BBB: dopo metasenv\n" ^  NCicPp.ppmetasenv ~subst [metasenv_entry]));*)
248         let diff = List.filter (fun x -> not (List.mem x orig)) restrictions in
249         List.map 
250           (fun (n,_) as orig -> if i = n then metasenv_entry else orig) 
251           metasenv,
252         subst_entry :: subst, j, diff
253       with Occur -> raise (MetaSubstFailure (lazy (Printf.sprintf
254           ("Cannot restrict the context of the metavariable ?%d "^^
255           "over the hypotheses %s since metavariable's type depends "^^
256           "on at least one of them") i (String.concat ", " 
257           (List.map (fun x -> fst (List.nth ctx (x-1))) restrictions)))))
258     with 
259     | NCicUtils.Meta_not_found _ -> assert false
260 ;;
261
262 let rec flexible_arg context subst = function 
263   | NCic.Meta (i,_) ->
264       (try 
265         let _,_,t,_ = List.assoc i subst in
266         flexible_arg context subst t
267       with Not_found -> true)
268   | NCic.Appl (NCic.Meta (i,_) :: args)-> 
269       (try 
270         let _,_,t,_ = List.assoc i subst in
271         flexible_arg context subst 
272           (NCicReduction.head_beta_reduce ~delta:max_int 
273             (NCic.Appl (t :: args)))
274       with Not_found -> true)
275    (* this is a cheap whd, it only performs zeta-reduction.
276     * 
277     * it works when the **omissis** disambiguation algorithm
278     * is run on `let x := K a b in t`, K is substituted for a 
279     * ? and thus in t metavariables have a flexible Rel
280     *)
281   | NCic.Rel i ->
282       (try
283          match List.nth context (i-1)
284          with 
285          | _,NCic.Def (bo,_) ->
286                flexible_arg context subst
287                  (NCicSubstitution.lift i bo)
288          | _ -> false
289       with 
290       | Failure _ -> 
291           prerr_endline (Printf.sprintf "Rel %d inside context:\n%s" i  
292             (NCicPp.ppcontext ~subst ~metasenv:[] context));
293           assert false
294       | Invalid_argument _ -> assert false)
295   | _ -> false
296 ;;
297
298 let is_out_scope = function `OutScope _ -> true | _ -> false;;
299 let is_out_scope_tag = List.exists is_out_scope;;
300 let int_of_out_scope_tag tag = 
301  match List.filter is_out_scope tag with [`OutScope n] -> n | _ -> assert false
302 ;;
303
304
305 exception Found;;
306
307 (* INVARIANT: we suppose that t is not another occurrence of Meta(n,_), 
308    otherwise the occur check does not make sense in case of unification
309    of ?n with ?n *)
310 let delift ~unify metasenv subst context n l t =
311   (*D*)  inside 'D'; try let rc =  
312   let is_in_scope_meta subst = function
313     | NCic.Meta (i,_) ->
314         (try 
315            let tag, _, _, _ = NCicUtils.lookup_subst i subst in 
316             List.mem `InScope tag
317         with NCicUtils.Subst_not_found _ -> false)
318     | _ -> false
319   in
320   let contains_in_scope subst t = 
321     let rec aux _ () = function
322       | NCic.Meta _ as t ->
323           if is_in_scope_meta subst t then raise Found
324           else ()
325       | t -> 
326           if is_in_scope_meta subst t then raise Found
327           else NCicUtils.fold (fun _ () -> ()) () aux () t
328     in
329     try aux () () t; false with Found -> true
330   in
331   let unify_list in_scope = 
332     match l with
333     | _, NCic.Irl _ -> fun _ _ _ _ _ -> None
334     | shift, NCic.Ctx l -> fun metasenv subst context k t ->
335        if flexible_arg context subst t || contains_in_scope subst t then None else
336          let lb = 
337            List.map (fun t -> 
338             let t = NCicSubstitution.lift (k+shift) t in
339             t, flexible_arg context subst t) 
340            l 
341          in
342          HExtlib.list_findopt
343           (fun (li,flexible) i ->
344             if flexible || i < in_scope then None else
345              match unify metasenv subst context li t with
346              | Some (metasenv,subst) -> 
347                  Some ((metasenv, subst), NCic.Rel (i+1+k))
348              | None -> None)
349           lb
350   in
351   let rec aux (context,k,in_scope) (metasenv, subst as ms) t = 
352    (* XXX if t is closed, we should just terminate. Speeds up hints! *)
353    if NCicUntrusted.looks_closed t then ms, t
354    else 
355    match unify_list in_scope metasenv subst context k t with
356    | Some x -> x
357    | None -> 
358     match t with 
359     | NCic.Rel n as t when n <= k -> ms, t
360     | NCic.Rel n -> 
361         (try
362           match List.nth context (n-1) with
363           | _,NCic.Def (bo,_) -> 
364                 (try ms, NCic.Rel ((position in_scope (n-k) l) + k)
365                  with NotInTheList ->
366                 (* CSC: This bit of reduction hurts performances since it is
367                  * possible to  have an exponential explosion of the size of the
368                  * proof. required for nat/nth_prime.ma *)
369                   aux (context,k,in_scope) ms (NCicSubstitution.lift n bo))
370           | _,NCic.Decl _ -> ms, NCic.Rel ((position in_scope (n-k) l) + k)
371         with Failure _ -> assert false) (*Unbound variable found in delift*)
372     | NCic.Meta (i,_) when i=n ->
373          raise (MetaSubstFailure (lazy (Printf.sprintf (
374            "Cannot unify the metavariable ?%d with a term that has "^^
375            "as subterm %s in which the same metavariable "^^
376            "occurs (occur check)") i 
377             (NCicPp.ppterm ~context ~metasenv ~subst t))))
378     | NCic.Meta (i,l1) as orig ->
379         (try
380            let tag,c,t,ty = NCicUtils.lookup_subst i subst in
381            let in_scope, clear = 
382             if List.mem `InScope tag then 0, true
383             else if is_out_scope_tag tag then int_of_out_scope_tag tag,true
384             else in_scope, false
385            in
386            let ms = 
387              if not clear then ms
388              else 
389                metasenv, 
390                (i,([],c,t,ty)) :: List.filter (fun j,_ -> i <> j) subst
391            in
392            aux (context,k,in_scope) ms (NCicSubstitution.subst_meta l1 t)
393          with NCicUtils.Subst_not_found _ ->
394            if snd l1 = NCic.Irl 0 || snd l1 = NCic.Ctx [] then ms, orig
395            else
396               let shift1,lc1 = l1 in
397               let shift,lc = l in
398               let shift = shift + k in
399               match lc, lc1 with
400               | NCic.Irl len, NCic.Irl len1 
401                 when shift1 + len1 < shift || shift1 > shift + len ->
402                   let restrictions = HExtlib.list_seq 1 (len1 + 1) in
403                   let metasenv, subst, newmeta, more_restricted = 
404                    restrict metasenv subst i restrictions in
405                   let l' = (0,NCic.Irl (max 0 (k-shift1))) in
406                   let l' = purge_restricted restrictions more_restricted l' in
407                   (metasenv, subst),NCic.Meta (newmeta,l')
408               | NCic.Irl len, NCic.Irl len1 ->
409                   let low_restrictions, new_shift = 
410                     if k <= shift1 && shift1 < shift then 
411                       HExtlib.list_seq 1 (shift - shift1 + 1), k
412                     else if shift1 < k (* <= shift *) then
413                       let save_below = k - shift1 in
414                       HExtlib.list_seq (save_below + 1) (shift - shift1 + 1),
415                       shift1
416                     else [], shift1 - shift + k
417                   in
418                   let high_restrictions = 
419                     let last = shift + len in
420                     let last1 = shift1 + len1 in
421                     if last1 > last then
422                       let high_gap = last1 - last in
423                       HExtlib.list_seq (len1 - high_gap + 1) (len1 + 1)
424                     else []
425                   in
426                   let restrictions = low_restrictions @ high_restrictions in
427                   if restrictions = [] then
428                     if shift = k then ms, orig
429                     else ms, NCic.Meta (i, (new_shift, lc1))
430                   else
431                     let metasenv, subst, newmeta, more_restricted = 
432                      restrict metasenv subst i restrictions in
433                     let newlc_len = len1 - List.length restrictions in 
434                     let l' = new_shift, NCic.Irl newlc_len in
435                     let l' = purge_restricted restrictions more_restricted l' in
436                     (metasenv, subst),NCic.Meta(newmeta,l')
437
438               | _ ->
439                   let lc1 = NCicUtils.expand_local_context lc1 in
440                   let lc1 = List.map (NCicSubstitution.lift shift1) lc1 in
441                   let rec deliftl tbr j ms = function
442                     | [] -> ms, tbr, []
443                     | t::tl ->
444                         let ms, tbr, tl = deliftl tbr (j+1) ms tl in
445                         try 
446                           let ms, t = aux (context,k,in_scope) ms t in 
447                           ms, tbr, t::tl
448                         with
449                         | NotInTheList | MetaSubstFailure _ -> ms, j::tbr, tl
450                   in
451                   let (metasenv, subst), to_be_r, lc1' = deliftl [] 1 ms lc1 in
452                   pp (lazy ("TO BE RESTRICTED: " ^ 
453                    (String.concat "," (List.map string_of_int to_be_r))));
454                   let l1 = pack_lc (0, NCic.Ctx lc1') in
455                   pp (lazy ("newmeta:" ^ NCicPp.ppterm
456                    ~metasenv ~subst ~context (NCic.Meta (999,l1))));
457                   pp (lazy (NCicPp.ppmetasenv ~subst metasenv));
458                   if to_be_r = [] then
459                     (metasenv, subst), 
460                     (if lc1' = lc1 then orig else NCic.Meta (i,l1))
461                   else
462                     let metasenv, subst, newmeta, more_restricted = 
463                      restrict metasenv subst i to_be_r in
464                     let l1 = purge_restricted to_be_r more_restricted l1 in
465                      (metasenv, subst), NCic.Meta(newmeta,l1))
466
467     | t -> 
468         NCicUntrusted.map_term_fold_a 
469           (fun e (c,k,s) -> (e::c,k+1,s)) (context,k,in_scope) aux ms t
470   in
471 (*
472   prerr_endline (
473     "DELIFTO " ^ NCicPp.ppterm ~metasenv ~subst ~context t ^ " w.r.t. " ^
474     String.concat ", " (List.map (NCicPp.ppterm ~metasenv ~subst ~context) ( 
475       let shift, lc = l in
476       (List.map (NCicSubstitution.lift shift) 
477         (NCicUtils.expand_local_context lc))
478   )));
479 *)
480    try aux (context,0,0) (metasenv,subst) t
481    with NotInTheList ->
482       (* This is the case where we fail even first order unification. *)
483       (* The reason is that our delift function is weaker than first  *)
484       (* order (in the sense of alpha-conversion). See comment above  *)
485       (* related to the delift function.                              *)
486       let msg = (lazy (Printf.sprintf
487         ("Error trying to abstract %s over [%s]: the algorithm only tried to "^^
488         "abstract over bound variables") (NCicPp.ppterm ~metasenv ~subst
489         ~context t) (String.concat "; " (List.map (NCicPp.ppterm ~metasenv
490         ~subst ~context) (let shift, lc = l in List.map (NCicSubstitution.lift
491         shift) (NCicUtils.expand_local_context lc))))))
492       in
493       let shift, lc = l in
494       let lc = NCicUtils.expand_local_context lc in
495       let l = List.map (NCicSubstitution.lift shift) lc in
496        if
497         List.exists (fun t-> NCicUntrusted.metas_of_term subst context t <> [])l
498        then
499         raise (Uncertain msg)
500        else
501         raise (MetaSubstFailure msg)
502  (*D*)  in outside None; rc with exn -> outside (Some exn); raise exn 
503 ;;
504
505 let mk_meta ?(attrs=[]) metasenv context ?with_type kind = 
506   assert(kind <> `IsSort || context = []);
507   let n = newmeta () in
508   let ty= match with_type with None-> NCic.Implicit (`Typeof n)| Some x ->x in
509   let len = List.length context in
510   let attrs = NCicUntrusted.set_kind kind attrs in
511   let menv_entry = (n, (attrs, context, ty)) in
512   menv_entry :: metasenv, n, NCic.Meta (n, (0,NCic.Irl len)), ty
513 ;;
514
515 let extend_meta metasenv n =
516  try
517   let attrs,cc,ty = NCicUtils.lookup_meta n metasenv in 
518   (match ty with 
519   | NCic.Implicit (`Typeof _) -> 
520       let mk_meta context kind =
521         let metasenv, _, ty, _ = mk_meta metasenv context kind in
522         (n, (attrs, cc, ty)) :: List.filter (fun x,_ -> x <> n) metasenv, ty
523       in
524       (match NCicUntrusted.kind_of_meta attrs with
525        | `IsSort 
526        | `IsType -> mk_meta [] `IsSort
527        | `IsTerm -> mk_meta cc `IsType)
528   | ty -> metasenv, ty)
529  with NCicUtils.Meta_not_found _ -> assert false
530 ;;
531
532 let saturate ?(delta=0) metasenv subst context ty goal_arity =
533  assert (goal_arity >= 0);
534   let rec aux metasenv = function
535    | NCic.Prod (name,s,t) as ty ->
536        let metasenv1, _, arg,_ = 
537           mk_meta ~attrs:[`Name name] metasenv context ~with_type:s `IsTerm in
538        let t, metasenv1, args, pno = 
539            aux metasenv1 (NCicSubstitution.subst arg t) 
540        in
541        if pno + 1 = goal_arity then
542          ty, metasenv, [], goal_arity+1
543        else
544          t, metasenv1, arg::args, pno+1
545    | ty ->
546         match NCicReduction.whd ~subst context ty ~delta with
547         | NCic.Prod _ as ty -> aux metasenv ty
548         | ty -> ty, metasenv, [], 0
549   in
550   let res, newmetasenv, arguments, _ = aux metasenv ty in
551   res, newmetasenv, arguments
552 ;;