X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=inline;f=components%2Ftactics%2FautoTypes.mli;h=ab05564ff3c2099819feab9d3e971d6d5d41d8a9;hb=b44a732a930584aa08f4a78371dd9ac5b405f31e;hp=f1a078359c0c4e274812ee8668fb62f40a0d4c98;hpb=be87825f491f5eff5f02ee78dd23f34fc0e46e71;p=helm.git diff --git a/components/tactics/autoTypes.mli b/components/tactics/autoTypes.mli index f1a078359..ab05564ff 100644 --- a/components/tactics/autoTypes.mli +++ b/components/tactics/autoTypes.mli @@ -25,11 +25,16 @@ type flags = { maxwidth: int; + maxsize: int; maxdepth: int; + maxgoalsizefactor : int; timeout: float; + use_library: bool; use_paramod: bool; use_only_paramod : bool; + close_more : bool; dont_cache_failures: bool; + do_types: bool; } val default_flags : unit -> flags @@ -37,8 +42,8 @@ val default_flags : unit -> flags (* (metasenv, subst, (metano,depth)list *) type sort = P | T;; type and_elem = - Cic.metasenv * Cic.substitution * (ProofEngineTypes.goal * int * sort) list + (int * Cic.term * Cic.term) * Cic.metasenv * Cic.substitution * (ProofEngineTypes.goal * int * sort) list type auto_result = | Fail of string - | Success of Cic.metasenv * Cic.substitution * and_elem list + | Success of (int * Cic.term * Cic.term) * Cic.metasenv * Cic.substitution * and_elem list