]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/autoCache.ml
parameter sintax added to axiom statement
[helm.git] / helm / software / components / tactics / autoCache.ml
index 7458e577748bd99e731f9592bbdeebceac534e80..882a1839309ff21a2cc5ee5284aaf33082deb329 100644 (file)
@@ -153,3 +153,6 @@ let cache_size (_,oldcache) =
 let cache_clean (univ,oldcache) = 
   univ,List.filter (function (_,Succeded _) -> true | _ -> false) oldcache
 ;;
+let cache_reset_underinspection (u,c) =
+  u,List.filter (function (_,UnderInspection) -> false | _ -> true) c
+;;