X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2FreductionTactics.mli;h=dbec3fb72b0d9532b2fa016bd7737749c62dd573;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=20e45827d2de436954314279261fdb397728d1e4;hpb=80fc89019bcb7fb7e0e1fb8bb111b708be49d19f;p=helm.git diff --git a/helm/ocaml/tactics/reductionTactics.mli b/helm/ocaml/tactics/reductionTactics.mli index 20e45827d..dbec3fb72 100644 --- a/helm/ocaml/tactics/reductionTactics.mli +++ b/helm/ocaml/tactics/reductionTactics.mli @@ -23,12 +23,25 @@ * http://cs.unibo.it/helm/. *) -(* The default of term is the thesis of the goal to be prooved *) 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 +(* The default of term is the thesis of the goal to be prooved *) +val unfold_tac: + ProofEngineTypes.lazy_term option -> + pattern:ProofEngineTypes.pattern -> + ProofEngineTypes.tactic + +val change_tac: + pattern:ProofEngineTypes.pattern -> + ProofEngineTypes.lazy_term -> + ProofEngineTypes.tactic + val fold_tac: - reduction:(Cic.context -> Cic.term -> Cic.term) -> - pattern:ProofEngineTypes.pattern -> ProofEngineTypes.tactic + reduction:ProofEngineTypes.lazy_reduction -> + term:ProofEngineTypes.lazy_term -> + pattern:ProofEngineTypes.pattern -> + ProofEngineTypes.tactic +