X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fgrafite%2FgrafiteAstPp.ml;h=cdf90c5b989883ff54a2e98d6a4c7e6c527901e8;hb=8ae1653eb75d2b57c50e077c49cb9d078313ea9d;hp=0fddb21639496a2085b480598c752d6d3099b003;hpb=30743ffb0d331aaaa449957238128943ba781ecf;p=helm.git diff --git a/helm/software/components/grafite/grafiteAstPp.ml b/helm/software/components/grafite/grafiteAstPp.ml index 0fddb2163..cdf90c5b9 100644 --- a/helm/software/components/grafite/grafiteAstPp.ml +++ b/helm/software/components/grafite/grafiteAstPp.ml @@ -101,6 +101,7 @@ let pp_ntactic ~map_unicode_to_tex = function | NId _ -> "nid" | NIntro (_,n) -> "#" ^ n | NRewrite (_,dir,n,where) -> "nrewrite" ^ assert false + | NReduce _ | NGeneralize _ | NLetIn _ | NAssert _ | NAuto _ -> assert false ;; let rec pp_tactic ~map_unicode_to_tex ~term_pp ~lazy_term_pp = @@ -267,24 +268,30 @@ let pp_arg ~term_pp arg = let pp_macro ~term_pp ~lazy_term_pp = let term_pp = pp_arg ~term_pp in - let style_pp = function - | Declarative -> "" - | Procedural None -> "procedural " - | Procedural (Some i) -> Printf.sprintf "procedural %u " i - in - let prefix_pp prefix = - if prefix = "" then "" else Printf.sprintf " \"%s\"" prefix - in let flavour_pp = function - | None -> "" - | Some `Definition -> " as definition" - | Some `MutualDefinition -> " as mutual" - | Some `Fact -> " as fact" - | Some `Lemma -> " as lemma" - | Some `Remark -> " as remark" - | Some `Theorem -> " as theorem" - | Some `Variant -> " as variant" - | Some `Axiom -> " as axiom" + | `Definition -> "definition" + | `Fact -> "fact" + | `Lemma -> "lemma" + | `Remark -> "remark" + | `Theorem -> "theorem" + | `Variant -> "variant" + | `Axiom -> "axiom" + | `MutualDefinition -> assert false + in + let pp_inline_params l = + let pp_param = function + | IPPrefix prefix -> "prefix = \"" ^ prefix ^ "\"" + | IPAs flavour -> flavour_pp flavour + | IPProcedural -> "procedural" + | IPNoDefaults -> "nodefaults" + | IPDepth depth -> "depth = " ^ string_of_int depth + | IPLevel level -> "level = " ^ string_of_int level + | IPComments -> "comments" + | IPCoercions -> "coercions" + | IPDebug debug -> "debug = " ^ string_of_int debug + in + let s = String.concat " " (List.map pp_param l) in + if s = "" then s else " " ^ s in let pp_reduction_kind = pp_reduction_kind ~term_pp:lazy_term_pp in function @@ -301,8 +308,8 @@ let pp_macro ~term_pp ~lazy_term_pp = | Hint (_, true) -> "hint rewrite" | Hint (_, false) -> "hint" | AutoInteractive (_,params) -> "auto " ^ pp_auto_params ~term_pp params - | Inline (_, style, suri, prefix, flavour) -> - Printf.sprintf "inline %s\"%s\"%s%s" (style_pp style) suri (prefix_pp prefix) (flavour_pp flavour) + | Inline (_, suri, params) -> + Printf.sprintf "inline \"%s\"%s" suri (pp_inline_params params) let pp_associativity = function | Gramext.LeftA -> "left associative" @@ -338,7 +345,8 @@ let pp_command ~term_pp ~obj_pp = function "unification hint " ^ string_of_int n ^ " " ^ term_pp t | Default (_,what,uris) -> pp_default what uris | Drop _ -> "drop" - | Include (_,path) -> "include \"" ^ path ^ "\"" + | Include (_,true,path) -> "include \"" ^ path ^ "\"" + | Include (_,false,path) -> "include source \"" ^ path ^ "\"" | Obj (_,obj) -> obj_pp obj | Qed _ -> "qed" | Relation (_,id,a,aeq,refl,sym,trans) -> @@ -355,6 +363,9 @@ let pp_command ~term_pp ~obj_pp = function | Print (_,s) -> "print " ^ s | Set (_, name, value) -> Printf.sprintf "set \"%s\" \"%s\"" name value | NObj (_,o) -> "not supported" + | NUnivConstraint (_) -> "not supported" + | NQed (_) -> "not supported" + | Pump (_) -> "not supported" let pp_punctuation_tactical = function @@ -387,6 +398,9 @@ let pp_executable ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp = | NonPunctuationTactical (_, tac, punct) -> pp_non_punctuation_tactical tac ^ pp_punctuation_tactical punct + | NNonPunctuationTactical (_, tac, punct) -> + pp_non_punctuation_tactical tac + ^ pp_punctuation_tactical punct | Command (_, cmd) -> pp_command ~term_pp ~obj_pp cmd ^ "." let pp_comment ~map_unicode_to_tex ~term_pp ~lazy_term_pp ~obj_pp =