]> matita.cs.unibo.it Git - helm.git/blobdiff - components/tactics/autoTypes.ml
Added a couple of flags to auto
[helm.git] / components / tactics / autoTypes.ml
index 93205c8362f5289957ce06f8d3973bd844c69a42..9031a0338736fa152c1efd1add013abc95a66b5c 100644 (file)
@@ -27,8 +27,10 @@ type flags = {
   maxwidth: int;
   maxdepth: int;
   timeout: float;
+  use_library: bool;
   use_paramod: bool;
   use_only_paramod : bool;
+  close_more : bool; 
   dont_cache_failures: bool;
 }
 
@@ -36,8 +38,10 @@ let default_flags _ =
   {maxwidth=3;
    maxdepth=3;
    timeout=Unix.gettimeofday() +.3.0;
+   use_library=true;
    use_paramod=true;
    use_only_paramod=false;
+   close_more=false; 
    dont_cache_failures=false}
 ;;