X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAst.ml;h=813a080719cfbf039ea234c4dab8e1c81460004a;hb=3d3d0248bf4770c63361f7805d2099b2a607f44d;hp=e807c6f48eacca783e51be27210bb30cde4adc23;hpb=a7237500e8a2a4237a6ae8ba4b8301f7bbcb6acb;p=helm.git diff --git a/helm/software/components/grafite/grafiteAst.ml b/helm/software/components/grafite/grafiteAst.ml index e807c6f48..813a08071 100644 --- a/helm/software/components/grafite/grafiteAst.ml +++ b/helm/software/components/grafite/grafiteAst.ml @@ -75,6 +75,8 @@ type ntactic = | NUnfocus of loc | NTry of loc * ntactic | NAssumption of loc + | NRepeat of loc * ntactic + | NBlock of loc * ntactic list type ('term, 'lazy_term, 'reduction, 'ident) tactic = (* Higher order tactics (i.e. tacticals) *) @@ -188,7 +190,7 @@ type ('term,'lazy_term) macro = (** To be increased each time the command type below changes, used for "safe" * marshalling *) -let magic = 25 +let magic = 26 type ('term,'obj) command = | Index of loc * 'term option (* key *) * UriManager.uri (* value *) @@ -212,6 +214,10 @@ type ncommand = | UnificationHint of loc * CicNotationPt.term * int (* term, precedence *) | NObj of loc * CicNotationPt.term CicNotationPt.obj | NUnivConstraint of loc * bool * NUri.uri * NUri.uri + | NCopy of loc * string * NUri.uri * (NUri.uri * NUri.uri) list + | NCoercion of loc * string * + CicNotationPt.term * CicNotationPt.term * + (string * CicNotationPt.term) * CicNotationPt.term | NQed of loc type punctuation_tactical =