From: Claudio Sacerdoti Coen Date: Wed, 20 Dec 2006 22:39:19 +0000 (+0000) Subject: Tactic cases documented X-Git-Tag: 0.4.95@7852~717 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=d781bb8353822c2a72a541de56b88fe48a23c48b;p=helm.git Tactic cases documented --- diff --git a/matita/help/C/sec_tactics.xml b/matita/help/C/sec_tactics.xml index ff8d099c0..aa9610df0 100644 --- a/matita/help/C/sec_tactics.xml +++ b/matita/help/C/sec_tactics.xml @@ -215,6 +215,52 @@ + + cases + cases + + cases t hyps + + + + + Synopsis: + + + cases + &term; [([&id;]…)] + + + + + Pre-conditions: + + + t must inhabit an inductive type + + + + + Action: + + + It proceed by cases on t. The new generated + hypothesis in each branch are named according to + hyps. + + + + + New sequents to prove: + + One new sequent for each constructor of the type of + t. Each sequent has a new hypothesis for + each argument of the constructor. + + + + + clear clear diff --git a/matita/help/C/tactics_quickref.xml b/matita/help/C/tactics_quickref.xml index 566d185d0..47e237e86 100644 --- a/matita/help/C/tactics_quickref.xml +++ b/matita/help/C/tactics_quickref.xml @@ -31,6 +31,14 @@ | auto auto_params + + + | + + cases + term [([id]…)] + + |