X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Ftactics%2Ftacticals.ml;h=ceb2d2de88cb28fc8a7554ee87c1167e5c846af8;hb=1b3f24947f19050f3947397e50a8d5ed3b61b71b;hp=a674fe31344a1f840971afececcc9b5a0f19fa61;hpb=5c02b80a7bd44f494ab8ed866d87a927e7ffcf9a;p=helm.git diff --git a/helm/software/components/tactics/tacticals.ml b/helm/software/components/tactics/tacticals.ml index a674fe313..ceb2d2de8 100644 --- a/helm/software/components/tactics/tacticals.ml +++ b/helm/software/components/tactics/tacticals.ml @@ -104,7 +104,8 @@ sig val semicolon: tactic val branch: tactic val shift: tactic - val pos: int -> tactic + val pos: int list -> tactic + val wildcard: tactic val merge: tactic val focus: int list -> tactic val unfocus: tactic @@ -295,6 +296,7 @@ struct let branch = cont_proxy C.Branch let shift = cont_proxy C.Shift let pos i = cont_proxy (C.Pos i) + let wildcard = cont_proxy C.Wildcard let merge = cont_proxy C.Merge let focus goals = cont_proxy (C.Focus goals) let unfocus = cont_proxy C.Unfocus