From 218d9cfaa1e2874b62c3e08adf98c4f9a85d2c11 Mon Sep 17 00:00:00 2001 From: Ferruccio Guidi Date: Tue, 20 Jun 2006 10:51:22 +0000 Subject: [PATCH] - added some documentation on the fwd tatcic - lapply concrete imput syntax fixed --- components/grafite_parser/grafiteParser.ml | 2 +- matita/help/C/sec_tactics.xml | 18 ++++++++++++++---- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/components/grafite_parser/grafiteParser.ml b/components/grafite_parser/grafiteParser.ml index cbaed19b0..535e396a9 100644 --- a/components/grafite_parser/grafiteParser.ml +++ b/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/matita/help/C/sec_tactics.xml b/matita/help/C/sec_tactics.xml index 712ce837a..c10d2bd33 100644 --- a/matita/help/C/sec_tactics.xml +++ b/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. -- 2.39.2