]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/paramodulation/utils.ml
huge commit in automation:
[helm.git] / helm / software / components / tactics / paramodulation / utils.ml
index a85ccc674220482c782598f26d1d1d1e8e4b9394..86c9c1430105e0948c4ba3274284b9b9b03caded 100644 (file)
@@ -114,6 +114,8 @@ let rec remove_local_context =
     | Cic.Meta (i,_) -> Cic.Meta (i,[])
     | Cic.Appl l ->
        Cic.Appl(List.map remove_local_context l)
+    | Cic.Prod (n,s,t) -> 
+       Cic.Prod (n,remove_local_context s, remove_local_context t)
     | t -> t