aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorfilliatr1999-11-18 16:45:32 +0000
committerfilliatr1999-11-18 16:45:32 +0000
commitf9f2c2bc695033f93a0b7352027678c4ca305ccd (patch)
tree5946f8dbe80ee1c6b319459fb728105f566458ec /tactics
parentfc4231e7370dd69bba695bbeac7349f1d2d81617 (diff)
introduction de Gset et Gmap pour Tlm puis Dn
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@122 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/dn.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/dn.ml b/tactics/dn.ml
index cc811735ae..55112ba798 100644
--- a/tactics/dn.ml
+++ b/tactics/dn.ml
@@ -29,7 +29,7 @@ type ('lbl,'pat,'inf) under_t = (('lbl * int) option,'pat * 'inf) Tlm.t
type ('lbl,'pat,'inf) t = {
tm : ('lbl,'pat,'inf) under_t;
- args :('lbl,'pat) dn_args }
+ args : ('lbl,'pat) dn_args }
let create dna = {tm = Tlm.create(); args = dna}
@@ -61,7 +61,7 @@ let lookup dnm dna' t =
List.fold_left
(fun l c -> List.flatten(List.map (lookrec c) l))
(tm_of tm (Some(lbl,List.length v))) v)
- in
+ in
List.flatten(List.map Tlm.xtract (lookrec t dnm.tm))
let upd dnm f = { args = dnm.args; tm = f dnm.args dnm.tm }