]> matita.cs.unibo.it Git - helm.git/blobdiff - components/tactics/proofEngineHelpers.ml
Demodulate_tac now depends on the universe
[helm.git] / components / tactics / proofEngineHelpers.ml
index 6e7b5a8e74aa90deb24642ad3184f562233b18fb..b4e9a4e94dda77e472926710485393c45799811f 100644 (file)
@@ -689,17 +689,6 @@ let lookup_type metasenv context hyp =
 
 (* FG: **********************************************************************)
 
-let list_rev_map_filter f l =
-   let rec aux a = function
-      | []       -> a
-      | hd :: tl -> 
-         begin match f hd with
-           | None   -> aux a tl
-           | Some b -> aux (b :: a) tl 
-         end
-   in 
-   aux [] l
-
 let get_name context index =
    try match List.nth context (pred index) with
       | Some (Cic.Name name, _)     -> Some name