X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_notation%2FcicNotationRew.mli;h=6516061389218313208b470f182daf687f3b6cc0;hb=a93a94942ad58d8645af1fd94bef8fa31d9541a4;hp=cb43b3099624eee6758134c99b7441e4905cb1da;hpb=ba2dfe6409e95bf9e558dc0d4be382b068671409;p=helm.git diff --git a/helm/ocaml/cic_notation/cicNotationRew.mli b/helm/ocaml/cic_notation/cicNotationRew.mli index cb43b3099..651606138 100644 --- a/helm/ocaml/cic_notation/cicNotationRew.mli +++ b/helm/ocaml/cic_notation/cicNotationRew.mli @@ -33,21 +33,28 @@ val ast_of_acic: (** level 2 -> level 1 *) val pp_ast: CicNotationPt.term -> CicNotationPt.term -(** level 1 -> level 0: see CicNotationPres.render *) + (** for level 1 -> level 0: see CicNotationPres.render *) type interpretation_id type pretty_printer_id val add_interpretation: - string * CicNotationPt.argument_pattern list -> (* level 2 pattern *) - CicNotationPt.cic_appl_pattern -> (* level 3 pattern *) + string -> (* id / description *) + string * CicNotationPt.argument_pattern list -> (* symbol, level 2 pattern *) + CicNotationPt.cic_appl_pattern -> (* level 3 pattern *) interpretation_id + (** @raise Interpretation_not_found *) +val lookup_interpretations: + string -> (* symbol *) + (string * CicNotationPt.argument_pattern list * + CicNotationPt.cic_appl_pattern) list + val add_pretty_printer: - ?precedence:int -> - ?associativity:Gramext.g_assoc -> - CicNotationPt.term -> (* level 2 pattern *) - CicNotationPt.term -> (* level 1 pattern *) + precedence:int -> + associativity:Gramext.g_assoc -> + CicNotationPt.term -> (* level 2 pattern *) + CicNotationPt.term -> (* level 1 pattern *) pretty_printer_id exception Interpretation_not_found