X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Ftactics%2Fauto.mli;h=eb612ac3a05221fdbe59be4f1deb1239f414fcc8;hb=4a3ced7cc547cc4f4566c4c68c35b0de1aabf7f0;hp=c9f3b9b095655944a41c0471e02aa8eadbd25c8b;hpb=76917216be769918258c90e486bb7c06d81b70b4;p=helm.git diff --git a/components/tactics/auto.mli b/components/tactics/auto.mli index c9f3b9b09..eb612ac3a 100644 --- a/components/tactics/auto.mli +++ b/components/tactics/auto.mli @@ -24,24 +24,34 @@ *) (* stops at the first solution *) -val auto: - HMysql.dbd -> - AutoCache.cache -> - Cic.context -> - Cic.metasenv -> - ProofEngineTypes.goal list -> (* goals in AND *) - AutoTypes.flags -> - (Cic.substitution * Cic.metasenv) option * AutoCache.cache - -val auto_all_solutions: - HMysql.dbd -> - AutoCache.cache -> - Cic.context -> - Cic.metasenv -> - ProofEngineTypes.goal list -> - AutoTypes.flags -> - (Cic.substitution * Cic.metasenv) list * AutoCache.cache +val auto_tac: + dbd:HSql.dbd -> + params:(string * string) list -> + universe:Universe.universe -> + ProofEngineTypes.tactic val applyS_tac: - dbd:HMysql.dbd -> term: Cic.term -> params:(string * string) list -> + dbd:HSql.dbd -> + term: Cic.term -> + params:(string * string) list -> + universe:Universe.universe -> + ProofEngineTypes.tactic + +val demodulate_tac : + dbd:HSql.dbd -> + universe:Universe.universe -> ProofEngineTypes.tactic + +type auto_status = + Cic.context * (int * Cic.term * bool * int * (int * Cic.term) list) list * + (int * Cic.term * int) list * + Cic.term list +val get_auto_status : unit -> auto_status +val pause: bool -> unit +val step : unit -> unit +val give_hint : int -> unit + +val lambda_close : + ?prefix_name:string -> Cic.term -> Cic.metasenv -> Cic.context -> Cic.term + +val pp_proofterm: Cic.term -> string