X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Ftactics%2Fdeclarative.mli;h=21e49b8e2e3ef40bfe290ce76e6c22c321800374;hb=ec07ff398325533d848da92e9dc69852d24b78a5;hp=08852c79cf70334bb4f9509e33ec0e37eca6f0e7;hpb=5649890273cf8e660bba744e84ce5fee1e5efe69;p=helm.git diff --git a/helm/software/components/tactics/declarative.mli b/helm/software/components/tactics/declarative.mli index 08852c79c..21e49b8e2 100644 --- a/helm/software/components/tactics/declarative.mli +++ b/helm/software/components/tactics/declarative.mli @@ -23,16 +23,19 @@ * http://cs.unibo.it/helm/. *) +type just = [ `Term of Cic.term | `Auto of Auto.auto_params ] + val assume : string -> Cic.term -> ProofEngineTypes.tactic val suppose : Cic.term -> string -> Cic.term option -> ProofEngineTypes.tactic -val by_term_we_proved : - dbd:HSql.dbd -> universe:Universe.universe -> Cic.term option -> Cic.term -> - string option -> Cic.term option -> ProofEngineTypes.tactic +val by_just_we_proved : + dbd:HSql.dbd -> automation_cache:AutomationCache.cache -> + just -> Cic.term -> string option -> Cic.term option -> + ProofEngineTypes.tactic -val bydone : dbd:HSql.dbd -> universe:Universe.universe -> Cic.term option -> - ProofEngineTypes.tactic +val bydone : dbd:HSql.dbd -> automation_cache:AutomationCache.cache -> + just -> ProofEngineTypes.tactic val we_need_to_prove : Cic.term -> string option -> Cic.term option -> ProofEngineTypes.tactic @@ -48,14 +51,15 @@ val thesisbecomes : Cic.term -> ProofEngineTypes.tactic val case : string -> params:(string * Cic.term) list -> ProofEngineTypes.tactic val existselim : - dbd:HSql.dbd -> universe:Universe.universe -> - Cic.term option -> string -> Cic.term -> string -> Cic.lazy_term -> ProofEngineTypes.tactic + dbd:HSql.dbd -> automation_cache:AutomationCache.cache -> just -> + string -> Cic.term -> string -> Cic.lazy_term -> ProofEngineTypes.tactic val andelim : - Cic.term -> string -> Cic.term -> string -> Cic.term -> ProofEngineTypes.tactic + dbd:HSql.dbd -> automation_cache:AutomationCache.cache -> just -> + string -> Cic.term -> string -> Cic.term -> ProofEngineTypes.tactic val rewritingstep : - dbd:HSql.dbd -> universe:Universe.universe -> + dbd:HSql.dbd -> automation_cache:AutomationCache.cache -> (string option * Cic.term) option -> Cic.term -> [ `Term of Cic.term | `Auto of Auto.auto_params | `Proof | `SolveWith of Cic.term] ->