X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Ftactics%2Fauto.mli;h=5883f0bf2ac72d0ff024157f12bc428729246882;hb=de74308340f4f94763b34e2f0b8d404886d109c2;hp=7150a124687af4e7e72da23a5c4a3cdd0eb7a61f;hpb=61acdea2419b3889096fd1e41275062b78253af0;p=helm.git diff --git a/components/tactics/auto.mli b/components/tactics/auto.mli index 7150a1246..5883f0bf2 100644 --- a/components/tactics/auto.mli +++ b/components/tactics/auto.mli @@ -25,19 +25,22 @@ (* stops at the first solution *) val auto: - AutoTypes.universe -> - AutoTypes.cache -> + HMysql.dbd -> + AutoCache.cache -> Cic.context -> Cic.metasenv -> ProofEngineTypes.goal list -> (* goals in AND *) AutoTypes.flags -> - (Cic.substitution * Cic.metasenv) option * AutoTypes.cache + (Cic.substitution * Cic.metasenv) option * AutoCache.cache val auto_all_solutions: - AutoTypes.universe -> - AutoTypes.cache -> + HMysql.dbd -> + AutoCache.cache -> Cic.context -> Cic.metasenv -> ProofEngineTypes.goal list -> AutoTypes.flags -> - (Cic.substitution * Cic.metasenv) list * AutoTypes.cache + (Cic.substitution * Cic.metasenv) list * AutoCache.cache + +val applyS_tac: dbd:HMysql.dbd -> term: Cic.term -> ProofEngineTypes.tactic +