]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_proof_checking/cicMiniReduction.ml
Old compare-terms function
[helm.git] / helm / ocaml / cic_proof_checking / cicMiniReduction.ml
index 1f6b72636662fbaec612898d0d41835907ee1c4b..5c88713c5affc199dc8d8561bc189f5ab8ec5a11 100644 (file)
@@ -23,6 +23,8 @@
  * http://cs.unibo.it/helm/.
  *)
 
+(* $Id$ *)
+
 let rec letin_nf =
  let module C = Cic in
   function
@@ -34,7 +36,7 @@ let rec letin_nf =
        C.Var (uri,exp_named_subst')
    | C.Meta _ as t -> t
    | C.Sort _ as t -> t
-   | C.Implicit as t -> t
+   | C.Implicit as t -> t
    | C.Cast (te,ty) -> C.Cast (letin_nf te, letin_nf ty)
    | C.Prod (n,s,t) -> C.Prod (n, letin_nf s, letin_nf t)
    | C.Lambda (n,s,t) -> C.Lambda (n, letin_nf s, letin_nf t)