X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Ftactics%2Ftactics.mli;h=d63e8805cf6d846e92b63d16e4c74cd236c9a9ce;hb=9ebbff1619da00a2d42e04def79c59d129ee4a92;hp=4517db0b5eff1bfdfb7d11553ecc1c2910073fc7;hpb=45d71beffd253ffd767a9afbfcec5c4f44afd8a8;p=helm.git diff --git a/components/tactics/tactics.mli b/components/tactics/tactics.mli index 4517db0b5..d63e8805c 100644 --- a/components/tactics/tactics.mli +++ b/components/tactics/tactics.mli @@ -1,10 +1,20 @@ -(* GENERATED FILE, DO NOT EDIT. STAMP:Tue Aug 29 11:37:38 CEST 2006 *) +(* GENERATED FILE, DO NOT EDIT. STAMP:Fri Jun 1 17:03:59 CEST 2007 *) val absurd : term:Cic.term -> ProofEngineTypes.tactic val apply : term:Cic.term -> ProofEngineTypes.tactic -val applyS : dbd:HMysql.dbd -> term:Cic.term -> ProofEngineTypes.tactic +val applyS : + dbd:HSql.dbd -> + term:Cic.term -> + params:(string * string) list -> + universe:Universe.universe -> ProofEngineTypes.tactic val assumption : ProofEngineTypes.tactic val auto : - params:(string * string) list -> dbd:HMysql.dbd -> ProofEngineTypes.tactic + dbd:HSql.dbd -> + params:(string * string) list -> + universe:Universe.universe -> ProofEngineTypes.tactic +val cases_intros : + ?howmany:int -> + ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> + Cic.term -> ProofEngineTypes.tactic val change : pattern:ProofEngineTypes.lazy_pattern -> Cic.lazy_term -> ProofEngineTypes.tactic @@ -16,23 +26,30 @@ val cut : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> Cic.term -> ProofEngineTypes.tactic val decompose : + ?sorts:string list -> ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> - ?user_types:(UriManager.uri * int) list -> - ?what:string -> dbd:HMysql.dbd -> ProofEngineTypes.tactic -val demodulate : dbd:HMysql.dbd -> ProofEngineTypes.tactic -val discriminate : term:Cic.term -> ProofEngineTypes.tactic + unit -> ProofEngineTypes.tactic +val demodulate : + dbd:HSql.dbd -> universe:Universe.universe -> ProofEngineTypes.tactic +val destruct : term:Cic.term -> ProofEngineTypes.tactic val elim_intros : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> - ?depth:int -> ?using:Cic.term -> Cic.term -> ProofEngineTypes.tactic + ?depth:int -> + ?using:Cic.term -> + ?pattern:ProofEngineTypes.lazy_pattern -> + Cic.term -> ProofEngineTypes.tactic val elim_intros_simpl : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> - ?depth:int -> ?using:Cic.term -> Cic.term -> ProofEngineTypes.tactic + ?depth:int -> + ?using:Cic.term -> + ?pattern:ProofEngineTypes.lazy_pattern -> + Cic.term -> ProofEngineTypes.tactic val elim_type : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> ?depth:int -> ?using:Cic.term -> Cic.term -> ProofEngineTypes.tactic val exact : term:Cic.term -> ProofEngineTypes.tactic val exists : ProofEngineTypes.tactic -val fail : ProofEngineTypes.tactic +val fail : Tacticals.tactic val fold : reduction:ProofEngineTypes.lazy_reduction -> term:Cic.lazy_term -> @@ -40,12 +57,11 @@ val fold : val fourier : ProofEngineTypes.tactic val fwd_simpl : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> - dbd:HMysql.dbd -> string -> ProofEngineTypes.tactic + dbd:HSql.dbd -> string -> ProofEngineTypes.tactic val generalize : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> ProofEngineTypes.lazy_pattern -> ProofEngineTypes.tactic -val id : ProofEngineTypes.tactic -val injection : term:Cic.term -> ProofEngineTypes.tactic +val id : Tacticals.tactic val intros : ?howmany:int -> ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> @@ -70,14 +86,13 @@ val replace : val rewrite : direction:[ `LeftToRight | `RightToLeft ] -> pattern:ProofEngineTypes.lazy_pattern -> - Cic.term -> ProofEngineTypes.tactic + Cic.term -> string list -> ProofEngineTypes.tactic val rewrite_simpl : direction:[ `LeftToRight | `RightToLeft ] -> pattern:ProofEngineTypes.lazy_pattern -> - Cic.term -> ProofEngineTypes.tactic + Cic.term -> string list -> ProofEngineTypes.tactic val right : ProofEngineTypes.tactic val ring : ProofEngineTypes.tactic -val set_goal : int -> ProofEngineTypes.tactic val simpl : pattern:ProofEngineTypes.lazy_pattern -> ProofEngineTypes.tactic val split : ProofEngineTypes.tactic val subst : ProofEngineTypes.tactic @@ -87,3 +102,7 @@ val unfold : Cic.lazy_term option -> pattern:ProofEngineTypes.lazy_pattern -> ProofEngineTypes.tactic val whd : pattern:ProofEngineTypes.lazy_pattern -> ProofEngineTypes.tactic +val compose : + ?howmany:int -> + ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> + Cic.term -> Cic.term -> ProofEngineTypes.tactic