X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Ftactics%2Fparamodulation%2Futils.ml;h=86c9c1430105e0948c4ba3274284b9b9b03caded;hb=433d9c9612c1557e03a549e004c796c1137d4b4a;hp=8a2722bb6820a1bf3d06652c8d9101be147dabad;hpb=f24441c88f3ba0c7870646fc2cfd1cbdf6517178;p=helm.git diff --git a/helm/software/components/tactics/paramodulation/utils.ml b/helm/software/components/tactics/paramodulation/utils.ml index 8a2722bb6..86c9c1430 100644 --- a/helm/software/components/tactics/paramodulation/utils.ml +++ b/helm/software/components/tactics/paramodulation/utils.ml @@ -25,7 +25,7 @@ (* $Id$ *) -let time = true;; +let time = false;; let debug = false;; let debug_metas = false;; let debug_res = false;; @@ -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