X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAst.ml;h=c73657ae1b4f8c458e5d290e5a202b15db41f7c0;hb=cc3ab906b631ef0edb4402cb622fc3fa96682717;hp=20635bd648accbf1e53f4d8717eebe0e2d61c9c8;hpb=8c19127e7ee6c71006838f89583a3283451b664c;p=helm.git diff --git a/helm/software/components/grafite/grafiteAst.ml b/helm/software/components/grafite/grafiteAst.ml index 20635bd64..c73657ae1 100644 --- a/helm/software/components/grafite/grafiteAst.ml +++ b/helm/software/components/grafite/grafiteAst.ml @@ -47,16 +47,16 @@ type 'lazy_term reduction = type ('term, 'lazy_term, 'reduction, 'ident) tactic = | Absurd of loc * 'term | Apply of loc * 'term + | ApplyS of loc * 'term | Assumption of loc - | Auto of loc * int option * int option * string option * string option - (* depth, width, paramodulation, full *) (* ALB *) + | Auto of loc * (string * string) list | Change of loc * ('term, 'lazy_term, 'ident) pattern * 'lazy_term - | Clear of loc * 'ident + | Clear of loc * 'ident list | ClearBody of loc * 'ident | Constructor of loc * int | Contradiction of loc | Cut of loc * 'ident option * 'term - | Decompose of loc * ('term, 'ident) type_spec list * 'ident * 'ident list + | Decompose of loc * ('term, 'ident) type_spec list * 'ident option * 'ident list | Discriminate of loc * 'term | Elim of loc * 'term * 'term option * int option * 'ident list | ElimType of loc * 'term * 'term option * int option * 'ident list @@ -140,7 +140,8 @@ type ('term, 'lazy_term, 'reduction, 'ident) tactical = | Semicolon of loc | Branch of loc | Shift of loc - | Pos of loc * int + | Pos of loc * int list + | Wildcard of loc | Merge of loc | Focus of loc * int list | Unfocus of loc