]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/grafite/grafiteAst.ml
1) mk_meta now returns also the index of the created meta
[helm.git] / helm / software / components / grafite / grafiteAst.ml
index 7b4411d02a23111fb64d98db310e1be8d523edea..ed2d7b9a1ace1fe17a9d3ff5a92f6fac63b4452b 100644 (file)
@@ -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,7 @@ type 'term just =
 
 type ntactic =
    | NApply of loc * CicNotationPt.term
-   | NChange of loc * CicNotationPt.term * CicNotationPt.term
+   | NChange of loc * npattern * CicNotationPt.term
    | NId of loc
 
 type ('term, 'lazy_term, 'reduction, 'ident) tactic =