X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAst.ml;h=f6555fa04c7dd5ed86bb8c4f6c6bbe8d7fee4feb;hb=585469505faa97c21687128490828a1aabee94ee;hp=5cc66743d7bdffa4ab8de2de7b8b3465ea3c169c;hpb=3b8d99d5fdb79a5d979a8e200a4a4307fe362009;p=helm.git diff --git a/helm/software/components/grafite/grafiteAst.ml b/helm/software/components/grafite/grafiteAst.ml index 5cc66743d..f6555fa04 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 @@ -46,6 +49,20 @@ type 'term just = [ `Term of 'term | `Auto of 'term auto_params ] +type ntactic = + | NApply of loc * 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) *) | Do of loc * int * ('term, 'lazy_term, 'reduction, 'ident) tactic @@ -63,6 +80,7 @@ type ('term, 'lazy_term, 'reduction, 'ident) tactic = (* Real tactics *) | Absurd of loc * 'term | Apply of loc * 'term + | ApplyRule of loc * 'term | ApplyP of loc * 'term (* apply for procedural reconstruction *) | ApplyS of loc * 'term * 'term auto_params | Assumption of loc @@ -132,7 +150,7 @@ type print_kind = [ `Env | `Coer ] type presentation_style = Declarative | Procedural of int option -type 'term macro = +type ('term,'lazy_term) macro = (* Whelp's stuff *) | WHint of loc * 'term | WMatch of loc * 'term @@ -140,20 +158,26 @@ type 'term macro = | WLocate of loc * string | WElim of loc * 'term (* real macros *) + | Eval of loc * 'lazy_term reduction * 'term | Check of loc * 'term | Hint of loc * bool | AutoInteractive of loc * 'term auto_params - | Inline of loc * presentation_style * string * string - (* URI or base-uri, name prefix *) + | Inline of loc * presentation_style * string * string * Cic.object_flavour option + (* URI or base-uri, name prefix, flavour *) (** To be increased each time the command type below changes, used for "safe" * marshalling *) -let magic = 13 +let magic = 19 type ('term,'obj) command = | Index of loc * 'term option (* key *) * UriManager.uri (* value *) + | Select of loc * UriManager.uri + | Pump of loc * int | Coercion of loc * 'term * bool (* add_obj *) * int (* arity *) * int (* saturations *) + | PreferCoercion of loc * 'term + | Inverter of loc * string * 'term * bool list + | UnificationHint of loc * 'term * int (* term, precedence *) | Default of loc * string * UriManager.uri list | Drop of loc | Include of loc * string @@ -163,8 +187,10 @@ type ('term,'obj) command = | Set of loc * string * string | Print of loc * string | Qed of loc + | NObj of loc * CicNotationPt.term CicNotationPt.obj + | NQed of loc -type ('term, 'lazy_term, 'reduction, 'ident) punctuation_tactical = +type punctuation_tactical = | Dot of loc | Semicolon of loc | Branch of loc @@ -173,19 +199,19 @@ type ('term, 'lazy_term, 'reduction, 'ident) punctuation_tactical = | Wildcard of loc | Merge of loc -type ('term,'lazy_term,'reduction,'ident) non_punctuation_tactical = +type non_punctuation_tactical = | Focus of loc * int list | Unfocus of loc | Skip of loc type ('term, 'lazy_term, 'reduction, 'obj, 'ident) code = | Command of loc * ('term, 'obj) command - | Macro of loc * 'term macro + | Macro of loc * ('term,'lazy_term) macro + | NTactic of loc * ntactic * punctuation_tactical | Tactic of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic option - * ('term, 'lazy_term, 'reduction, 'ident) punctuation_tactical - | NonPunctuationTactical of loc - * ('term, 'lazy_term, 'reduction, 'ident) non_punctuation_tactical - * ('term, 'lazy_term, 'reduction, 'ident) punctuation_tactical + * punctuation_tactical + | NonPunctuationTactical of loc * non_punctuation_tactical + * punctuation_tactical type ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment = | Note of loc * string