X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Ftactics%2Fauto.mli;h=d8efa613e1ae599242177294fd5b4b9b209d4065;hb=b0612e00b2a905510439d9a6e8908497c1b74c61;hp=68057fa9c348021580cc0a5654c94117fd205996;hpb=e3f6d410ebe780d1b26a0bcf982ef900a94e95a7;p=helm.git diff --git a/components/tactics/auto.mli b/components/tactics/auto.mli index 68057fa9c..d8efa613e 100644 --- a/components/tactics/auto.mli +++ b/components/tactics/auto.mli @@ -24,25 +24,20 @@ *) (* stops at the first solution *) -val auto: - HMysql.dbd -> - AutoTypes.universe -> - AutoTypes.cache -> - Cic.context -> - Cic.metasenv -> - ProofEngineTypes.goal list -> (* goals in AND *) - AutoTypes.flags -> - (Cic.substitution * Cic.metasenv) option * AutoTypes.cache +val auto_tac: + dbd:HMysql.dbd -> + params:(string * string) list -> + universe:Universe.universe -> + ProofEngineTypes.tactic -val auto_all_solutions: - HMysql.dbd -> - AutoTypes.universe -> - AutoTypes.cache -> - Cic.context -> - Cic.metasenv -> - ProofEngineTypes.goal list -> - AutoTypes.flags -> - (Cic.substitution * Cic.metasenv) list * AutoTypes.cache - -val applyS_tac: dbd:HMysql.dbd -> term: Cic.term -> ProofEngineTypes.tactic +val applyS_tac: + dbd:HMysql.dbd -> + term: Cic.term -> + params:(string * string) list -> + universe:Universe.universe -> + ProofEngineTypes.tactic +val demodulate_tac : + dbd:HMysql.dbd -> + universe:Universe.universe -> + ProofEngineTypes.tactic