X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAst.ml;h=2e6f450caaf03f61d7d8629869b7569596ae2062;hb=ffdd3ddd6ce10a5fa0729ab407647bd46c44b9d8;hp=7b4411d02a23111fb64d98db310e1be8d523edea;hpb=bf6f5b964bd4e6c16401a4bfab3c29d6824be22a;p=helm.git diff --git a/helm/software/components/grafite/grafiteAst.ml b/helm/software/components/grafite/grafiteAst.ml index 7b4411d02..2e6f450ca 100644 --- a/helm/software/components/grafite/grafiteAst.ml +++ b/helm/software/components/grafite/grafiteAst.ml @@ -32,6 +32,9 @@ type loc = Stdpp.location type ('term, 'lazy_term, 'ident) pattern = 'lazy_term option * ('ident * 'term) list * 'term option +type npattern = + CicNotationPt.term option * (string * CicNotationPt.term) list * CicNotationPt.term option + type 'lazy_term reduction = [ `Normalize | `Simpl @@ -48,8 +51,17 @@ type 'term just = type ntactic = | NApply of loc * CicNotationPt.term - | NChange of loc * CicNotationPt.term * CicNotationPt.term + | NAssert of loc * ((string * [`Decl of CicNotationPt.term | `Def of CicNotationPt.term * CicNotationPt.term]) list * CicNotationPt.term) list + | NCases of loc * CicNotationPt.term * npattern + | NCase1 of loc * string + | NChange of loc * npattern * CicNotationPt.term + | NElim of loc * CicNotationPt.term * npattern + | NEval of loc * npattern * [ `Whd of bool ] + | NGeneralize of loc * npattern | NId of loc + | NIntro of loc * string + | NLetIn of loc * npattern * CicNotationPt.term * string + | NRewrite of loc * direction * CicNotationPt.term * npattern type ('term, 'lazy_term, 'reduction, 'ident) tactic = (* Higher order tactics (i.e. tacticals) *)