diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-01-20 08:56:08 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2003-01-20 08:56:08 +0000 |
commit | 2e1cf3b0fc53197dbeb40e57b5dcbf6165419c9b (patch) | |
tree | 55133fec9ade0f5d073e2af01af4add476ff32be /doc/RefMan-ltac.tex | |
parent | feebb7a7a460ec7c67b96e7d04f43a382d43649e (diff) |
Utilisation de 'Recursive' pour les tactiques r�cursives
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8309 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'doc/RefMan-ltac.tex')
-rw-r--r-- | doc/RefMan-ltac.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/RefMan-ltac.tex b/doc/RefMan-ltac.tex index b6844eb48..d96ff4dda 100644 --- a/doc/RefMan-ltac.tex +++ b/doc/RefMan-ltac.tex @@ -542,7 +542,7 @@ Compute in} and we can get the terms back by {\tt Match}. {\parbox{6in} { \begin{coq_example} -Tactic Definition Permut n:= +Recursive Tactic Definition Permut n:= Match Context With [|-(permut ? ?1 ?1)] -> Apply permut_refl |[|-(permut ? (cons ?1 ?2) (cons ?1 ?3))] -> @@ -760,7 +760,7 @@ And MainSimplif:= Match Context With [|- ?1== ?2] -> Try (DSimplif ?1);Try (DSimplif ?2). -Tactic Definition Length trm:= +Recursive Tactic Definition Length trm:= Match trm With [?*?1] -> Let succ=(Length ?1) In |