From: Ferruccio Guidi Date: Tue, 20 Jun 2006 10:51:22 +0000 (+0000) Subject: - added some documentation on the fwd tatcic X-Git-Tag: make_still_working~7154 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=0fe1347ecafd65a4be26f85595032653f81d1ab3;p=helm.git - added some documentation on the fwd tatcic - lapply concrete imput syntax fixed --- diff --git a/helm/software/components/grafite_parser/grafiteParser.ml b/helm/software/components/grafite_parser/grafiteParser.ml index cbaed19b0..535e396a9 100644 --- a/helm/software/components/grafite_parser/grafiteParser.ml +++ b/helm/software/components/grafite_parser/grafiteParser.ml @@ -199,7 +199,7 @@ EXTEND depth = OPT [ IDENT "depth"; SYMBOL "="; i = int -> i ]; what = tactic_term; to_what = OPT [ "to" ; t = tactic_term_list1 -> t ]; - ident = OPT [ IDENT "as" ; ident = IDENT -> ident ] -> + ident = OPT [ "as" ; ident = IDENT -> ident ] -> let to_what = match to_what with None -> [] | Some to_what -> to_what in GrafiteAst.LApply (loc, depth, to_what, what, ident) | IDENT "left" -> GrafiteAst.Left loc diff --git a/helm/software/matita/help/C/sec_tactics.xml b/helm/software/matita/help/C/sec_tactics.xml index 712ce837a..c10d2bd33 100644 --- a/helm/software/matita/help/C/sec_tactics.xml +++ b/helm/software/matita/help/C/sec_tactics.xml @@ -750,7 +750,7 @@ its constructor takes no arguments. fwd fwd - fwd ...TODO + fwd H @@ -762,19 +762,29 @@ its constructor takes no arguments. Pre-conditions: - TODO. + + The type of H must be the premise of a + forward simplification theorem. + Action: - TODO. + + This tactic is under development. + It simplifies the current context by removing + H using the following methods: + forward application of a suitable simplification theorem (chosen + automatically) of which the type of H is a + premise, decomposition, rewriting. + New sequents to prove: - TODO. + None.