X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2Ftactics.mli;h=a91985290838195bfcd4a9813a0d5de8b5c674a9;hb=8caaccfeb66f6a507e5fb3b4b221a360eb5428c8;hp=d70c94ac54f39a057b0b4bb7d414bb2b35e0cccd;hpb=0575a1cb077087970f311b48f2e45dc4a01a6867;p=helm.git diff --git a/helm/ocaml/tactics/tactics.mli b/helm/ocaml/tactics/tactics.mli index d70c94ac5..a91985290 100644 --- a/helm/ocaml/tactics/tactics.mli +++ b/helm/ocaml/tactics/tactics.mli @@ -2,7 +2,7 @@ val absurd : term:Cic.term -> ProofEngineTypes.tactic val apply : term:Cic.term -> ProofEngineTypes.tactic val assumption : ProofEngineTypes.tactic -val auto : dbd:Mysql.dbd -> ProofEngineTypes.tactic +val auto : ?num:int option -> dbd:Mysql.dbd -> ProofEngineTypes.tactic val auto_new : dbd:Mysql.dbd -> ProofEngineTypes.tactic val change : what:Cic.term -> with_what:Cic.term -> ProofEngineTypes.tactic val compare : term:Cic.term -> ProofEngineTypes.tactic @@ -22,6 +22,7 @@ val decompose : Cic.term -> ProofEngineTypes.tactic val discriminate : term:Cic.term -> ProofEngineTypes.tactic val elim_intros_simpl : term:Cic.term -> ProofEngineTypes.tactic +val elim_intros : term:Cic.term -> ProofEngineTypes.tactic val elim_type : term:Cic.term -> ProofEngineTypes.tactic val exact : term:Cic.term -> ProofEngineTypes.tactic val exists : ProofEngineTypes.tactic @@ -35,6 +36,7 @@ val generalize : val set_goal : int -> ProofEngineTypes.tactic val injection : term:Cic.term -> ProofEngineTypes.tactic val intros : + ?howmany:int -> ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> unit -> ProofEngineTypes.tactic val left : ProofEngineTypes.tactic @@ -61,3 +63,6 @@ val transitivity : term:Cic.term -> ProofEngineTypes.tactic val whd : also_in_hypotheses:bool -> terms:Cic.term list option -> ProofEngineTypes.tactic +val normalize : + also_in_hypotheses:bool -> + terms:Cic.term list option -> ProofEngineTypes.tactic