X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Fng_kernel%2FnCicPp.mli;h=3b4cffb6d69711c397875fa41487837df0363bd7;hb=f8d45b2e4fa7817d7ef8312b3bb8a7439bd7fb8c;hp=ccac8dff67e78112bf8b5379082dbfb5826bed65;hpb=6abf435197c2bc37fadc0b3bd5925cd9cbe112e2;p=helm.git diff --git a/helm/software/components/ng_kernel/nCicPp.mli b/helm/software/components/ng_kernel/nCicPp.mli index ccac8dff6..3b4cffb6d 100644 --- a/helm/software/components/ng_kernel/nCicPp.mli +++ b/helm/software/components/ng_kernel/nCicPp.mli @@ -12,6 +12,7 @@ (* $Id$ *) val set_head_beta_reduce: (upto:int -> NCic.term -> NCic.term) -> unit +val set_get_obj: (NUri.uri -> NCic.obj) -> unit val r2s: bool -> NReference.reference -> string @@ -35,3 +36,34 @@ val ppmetasenv: val ppsubst: metasenv:NCic.metasenv -> NCic.substitution -> string val ppobj: NCic.obj -> string + +(* variants that use a formatter +module Format : sig + val ppterm: + formatter:Format.formatter -> + context:NCic.context -> + subst:NCic.substitution -> + metasenv:NCic.metasenv -> + ?margin:int -> + ?inside_fix:bool -> + NCic.term -> unit + + val ppcontext: + ?sep:string -> + formatter:Format.formatter -> + subst:NCic.substitution -> + metasenv:NCic.metasenv -> + NCic.context -> unit + + val ppmetasenv: + formatter:Format.formatter -> + subst:NCic.substitution -> NCic.metasenv -> unit + + val ppsubst: + formatter:Format.formatter -> + metasenv:NCic.metasenv -> NCic.substitution -> unit + + val ppobj: + formatter:Format.formatter -> NCic.obj -> unit +end +*)