]> matita.cs.unibo.it Git - helm.git/commitdiff
added C.Appl [] case
authorEnrico Tassi <enrico.tassi@inria.fr>
Wed, 1 Jun 2005 11:01:10 +0000 (11:01 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Wed, 1 Jun 2005 11:01:10 +0000 (11:01 +0000)
helm/ocaml/cic_proof_checking/cicReduction.ml

index 55ffb8edb99787b69b77fa2218caf8f96b0b21dd..63a8f550323a8ac9ad9fd8fd90b609158ef230f4 100644 (file)
@@ -1066,6 +1066,7 @@ let rec normalize ?(delta=true) ?(subst=[]) ctx term =
       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) ->
@@ -1079,9 +1080,9 @@ let rec normalize ?(delta=true) ?(subst=[]) ctx term =
   | 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