]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_notation/cicNotationRew.mli
added hyperlinks on case pattern heads and outtype
[helm.git] / helm / ocaml / cic_notation / cicNotationRew.mli
index 22b4f64e8fd827a4ecaf48ffed49600f0f171117..6516061389218313208b470f182daf687f3b6cc0 100644 (file)
@@ -33,15 +33,15 @@ 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 -> (* id / description *)
+  string ->                                       (* id / description *)
   string * CicNotationPt.argument_pattern list -> (* symbol, level 2 pattern *)
-  CicNotationPt.cic_appl_pattern -> (* level 3 pattern *)
+  CicNotationPt.cic_appl_pattern ->               (* level 3 pattern *)
     interpretation_id
 
   (** @raise Interpretation_not_found *)
@@ -53,8 +53,8 @@ val lookup_interpretations:
 val add_pretty_printer:
   precedence:int ->
   associativity:Gramext.g_assoc ->
-  CicNotationPt.term ->                             (* level 2 pattern *)
-  CicNotationPt.term ->                             (* level 1 pattern *)
+  CicNotationPt.term ->             (* level 2 pattern *)
+  CicNotationPt.term ->             (* level 1 pattern *)
     pretty_printer_id
 
 exception Interpretation_not_found