X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=components%2Ftactics%2FautoTactic.ml;h=dd9e8c186b5916cabb1b92187d22b5d3b3fb1579;hb=de74308340f4f94763b34e2f0b8d404886d109c2;hp=bb53991979a93cc385bfdd4292b5053473723dd2;hpb=be87825f491f5eff5f02ee78dd23f34fc0e46e71;p=helm.git diff --git a/components/tactics/autoTactic.ml b/components/tactics/autoTactic.ml index bb5399197..dd9e8c186 100644 --- a/components/tactics/autoTactic.ml +++ b/components/tactics/autoTactic.ml @@ -33,11 +33,11 @@ let bool params name default = try let s = List.assoc name params in - if s = "" || s = "1" || s = "true" || s = "yes" then true - else if s = "0" || s = "false" || s = "no" then false + if s = "" || s = "1" || s = "true" || s = "yes" || s = "on" then true + else if s = "0" || s = "false" || s = "no" || s= "off" then false else let msg = "Unrecognized value for parameter "^name^"\n" in - let msg = msg ^ "Accepted values are 1,true,yes and 0,false,no" in + let msg = msg^"Accepted values are 1,true,yes,on and 0,false,no,off" in raise (ProofEngineTypes.Fail (lazy msg)) with Not_found -> default ;; @@ -80,9 +80,14 @@ let auto_tac ~params ~(dbd:HMysql.dbd) (proof, goal) = let _, metasenv, _, _ = proof in let _, context, goalty = CicUtil.lookup_meta goal metasenv in let cache = - AutoCache.cache_add_library dbd proof [goal] AutoCache.cache_empty + if use_only_paramod then (* only paramod *) + AutoCache.cache_empty + else + let cache = + AutoCache.cache_add_library dbd proof [goal] AutoCache.cache_empty + in + AutoCache.cache_add_context context metasenv cache in - let cache = AutoCache.cache_add_context context metasenv cache in let oldmetasenv = metasenv in let flags = { AutoTypes.maxdepth = depth;