let s' = aux ctx s in
C.LetIn (n, s, aux ((def n s')::ctx) t)
| C.Appl (h::l) -> C.Appl (h::(List.map (aux ctx) l))
+ | C.Appl [] -> assert false
| C.Const (uri,exp_named_subst) ->
C.Const (uri, List.map (fun (n,t) -> n,aux ctx t) exp_named_subst)
| C.MutInd (uri,typeno,exp_named_subst) ->
| C.CoFix _ -> t
let normalize ?delta ?subst ctx term =
- prerr_endline ("NORMALIZE:" ^ CicPp.ppterm term);
+(* prerr_endline ("NORMALIZE:" ^ CicPp.ppterm term); *)
let t = normalize ?delta ?subst ctx term in
- prerr_endline ("NORMALIZED:" ^ CicPp.ppterm t);
+(* prerr_endline ("NORMALIZED:" ^ CicPp.ppterm t); *)
t