X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2Ftactics.mli;h=8938b99f37cd00ec055bf4f1b19bfe3e2945ff5d;hb=7db8899532352e046abea679641d0c77f470af01;hp=d70c94ac54f39a057b0b4bb7d414bb2b35e0cccd;hpb=0575a1cb077087970f311b48f2e45dc4a01a6867;p=helm.git diff --git a/helm/ocaml/tactics/tactics.mli b/helm/ocaml/tactics/tactics.mli index d70c94ac5..8938b99f3 100644 --- a/helm/ocaml/tactics/tactics.mli +++ b/helm/ocaml/tactics/tactics.mli @@ -2,15 +2,17 @@ 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_new : dbd:Mysql.dbd -> ProofEngineTypes.tactic +val auto : ?num:int option -> Mysql.dbd -> ProofEngineTypes.tactic +val auto_new : + ?depth:int -> + ?width:int -> dbd:Mysql.dbd -> unit -> ProofEngineTypes.tactic val change : what:Cic.term -> with_what:Cic.term -> ProofEngineTypes.tactic val compare : term:Cic.term -> ProofEngineTypes.tactic val constructor : n:int -> ProofEngineTypes.tactic val contradiction : ProofEngineTypes.tactic val cut : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> - term:Cic.term -> ProofEngineTypes.tactic + Cic.term -> ProofEngineTypes.tactic val decide_equality : ProofEngineTypes.tactic val decompose : ?uris_choice_callback:((UriManager.uri * int * @@ -22,6 +24,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,12 +38,13 @@ 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 val letin : ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> - term:Cic.term -> ProofEngineTypes.tactic + Cic.term -> ProofEngineTypes.tactic val reduce : also_in_hypotheses:bool -> terms:Cic.term list option -> ProofEngineTypes.tactic @@ -61,3 +65,10 @@ 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 +val fwd_simpl : hyp:Cic.name -> dbd:Mysql.dbd -> ProofEngineTypes.tactic +val lapply : + ?mk_fresh_name_callback:ProofEngineTypes.mk_fresh_name_type -> + ?substs:(Cic.name * Cic.term) list -> Cic.term -> ProofEngineTypes.tactic