X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2Ftactics.mli;h=8938b99f37cd00ec055bf4f1b19bfe3e2945ff5d;hb=a7b90d2494f7d580faa54ecd2835bd4649129763;hp=780961d6b9645ae6114377c87c54839610403d0a;hpb=9415c1b38c7927adab499ddd75f9a19d650a9acd;p=helm.git diff --git a/helm/ocaml/tactics/tactics.mli b/helm/ocaml/tactics/tactics.mli index 780961d6b..8938b99f3 100644 --- a/helm/ocaml/tactics/tactics.mli +++ b/helm/ocaml/tactics/tactics.mli @@ -3,7 +3,9 @@ val absurd : term:Cic.term -> ProofEngineTypes.tactic val apply : term:Cic.term -> ProofEngineTypes.tactic val assumption : ProofEngineTypes.tactic val auto : ?num:int option -> Mysql.dbd -> ProofEngineTypes.tactic -val auto_new : dbd: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 @@ -66,3 +68,7 @@ val whd : 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