X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAst.ml;h=2deacf2ac48bf5cde54bb68b3075889371a08788;hb=d7f32114f3806b51c2ee483dcb5a86e08d086a72;hp=7593fe53abf36f0a9439070737a9640d5b0cd8e2;hpb=42f25c258b0b199ee96dd8eaa3d44c86eb6916ab;p=helm.git diff --git a/helm/software/components/grafite/grafiteAst.ml b/helm/software/components/grafite/grafiteAst.ml index 7593fe53a..2deacf2ac 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,7 +51,11 @@ type 'term just = type ntactic = | NApply of loc * CicNotationPt.term + | NCase1 of loc * string + | NChange of loc * npattern * CicNotationPt.term + | NElim of loc * CicNotationPt.term * npattern | NId of loc + | NIntro of loc * string type ('term, 'lazy_term, 'reduction, 'ident) tactic = (* Higher order tactics (i.e. tacticals) *)