]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/fourierR.ml
Universe.key was not used to index terms, but was used to retrieve them
[helm.git] / helm / software / components / tactics / fourierR.ml
index 8e443447a892f2a160fd7c724697698857a987b8..4844978030fab7c3f78a90060965491cd1e13d51 100644 (file)
@@ -858,11 +858,9 @@ let rec superlift c n=
     [] -> []
   | Some(name,Cic.Decl(a))::next  -> 
      [Some(name,Cic.Decl(CicSubstitution.lift n a))]@ superlift next (n+1)
-  | Some(name,Cic.Def(a,None))::next -> 
-     [Some(name,Cic.Def((CicSubstitution.lift n a),None))]@ superlift next (n+1)
-  | Some(name,Cic.Def(a,Some ty))::next   -> 
+  | Some(name,Cic.Def(a,ty))::next   -> 
      [Some(name,
-      Cic.Def((CicSubstitution.lift n a),Some (CicSubstitution.lift n ty)))
+      Cic.Def((CicSubstitution.lift n a),CicSubstitution.lift n ty))
       ] @ superlift next (n+1)
   | _::next -> superlift next (n+1) (*??  ??*)