X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2FreductionTactics.mli;h=20e45827d2de436954314279261fdb397728d1e4;hb=80fc89019bcb7fb7e0e1fb8bb111b708be49d19f;hp=f97b4cf63903674b15836112f72b8d4cd868b856;hpb=bac72fcaa876137ab7a5630e0c1badc2a627dce8;p=helm.git diff --git a/helm/ocaml/tactics/reductionTactics.mli b/helm/ocaml/tactics/reductionTactics.mli index f97b4cf63..20e45827d 100644 --- a/helm/ocaml/tactics/reductionTactics.mli +++ b/helm/ocaml/tactics/reductionTactics.mli @@ -24,16 +24,11 @@ *) (* The default of term is the thesis of the goal to be prooved *) -val simpl_tac: - also_in_hypotheses:bool -> terms:(Cic.term list option) -> - ProofEngineTypes.tactic -val reduce_tac: - also_in_hypotheses:bool -> terms:(Cic.term list option) -> - ProofEngineTypes.tactic -val whd_tac: - also_in_hypotheses:bool -> terms:(Cic.term list option) -> - ProofEngineTypes.tactic +val simpl_tac: pattern:ProofEngineTypes.pattern -> ProofEngineTypes.tactic +val reduce_tac: pattern:ProofEngineTypes.pattern -> ProofEngineTypes.tactic +val whd_tac: pattern:ProofEngineTypes.pattern -> ProofEngineTypes.tactic +val normalize_tac: pattern:ProofEngineTypes.pattern -> ProofEngineTypes.tactic val fold_tac: reduction:(Cic.context -> Cic.term -> Cic.term) -> - also_in_hypotheses:bool -> term:Cic.term -> ProofEngineTypes.tactic + pattern:ProofEngineTypes.pattern -> ProofEngineTypes.tactic