]> matita.cs.unibo.it Git - helm.git/commitdiff
Minor changes.
authorAndrea Asperti <andrea.asperti@unibo.it>
Fri, 20 Oct 2006 15:39:46 +0000 (15:39 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Fri, 20 Oct 2006 15:39:46 +0000 (15:39 +0000)
components/tactics/autoTypes.ml
components/tactics/autoTypes.mli

index 17005b06d40d7e4ae06710a51a9f0ad3a1474dd7..93205c8362f5289957ce06f8d3973bd844c69a42 100644 (file)
@@ -33,8 +33,12 @@ type flags = {
 }
 
 let default_flags _ =
-  {maxwidth=3;maxdepth=3;timeout=Unix.gettimeofday() +.
-  3.0;use_paramod=true;use_only_paramod=false;dont_cache_failures=false}
+  {maxwidth=3;
+   maxdepth=3;
+   timeout=Unix.gettimeofday() +.3.0;
+   use_paramod=true;
+   use_only_paramod=false;
+   dont_cache_failures=false}
 ;;
 
 (* (metasenv, subst, (metano,depth)list *)
index f1a078359c0c4e274812ee8668fb62f40a0d4c98..d3081b0abe9f10bb8d81f7b8cab027e881ddca7c 100644 (file)
@@ -29,7 +29,7 @@ type flags = {
   timeout: float;
   use_paramod: bool;
   use_only_paramod : bool;
-  dont_cache_failures: bool;
+  dont_cache_failures: bool
 }
 
 val default_flags : unit -> flags