From: Claudio Sacerdoti Coen Date: Wed, 8 Feb 2006 10:55:57 +0000 (+0000) Subject: Help for the first two tactics. X-Git-Tag: make_still_working~7598 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=36aa410021caae1783ef25281a01a0580554cc37;p=helm.git Help for the first two tactics. --- diff --git a/helm/software/matita/help/C/sec_tactics.xml b/helm/software/matita/help/C/sec_tactics.xml index e658178ca..82bc536d7 100644 --- a/helm/software/matita/help/C/sec_tactics.xml +++ b/helm/software/matita/help/C/sec_tactics.xml @@ -5,13 +5,63 @@ absurd <term> - The tactic absurd - - + absurd P + + + Pre-conditions: + + P must have type Type. + + + + + Action: + + it closes the current goal by eliminating an + absurd term. + + + + New sequents to prove: + + it opens two new sequents of conclusion P + and ¬P. + + + + apply <term> - The tactic apply + apply t + + + + Pre-conditions: + + t must have type + T1 → ... → + Tn → G + where G can be unified with the conclusion + of the current sequent. + + + + Action: + + it closes the current goal by applying t. + + + + New sequents to prove: + + it opens a new goal for each premise + Ti that is not + instantiated by unification. + + + + assumption