From: Kim Nguyễn Date: Sat, 9 Mar 2013 10:07:25 +0000 (+0100) Subject: Add the inverse string (superscript -1) to the module. X-Git-Tag: v0.1~158 X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=commitdiff_plain;h=cd87d0f43eb81563fd303875ff4c83fe382ea99f Add the inverse string (superscript -1) to the module. --- diff --git a/src/utils/pretty.ml b/src/utils/pretty.ml index 1255b7b..1927216 100644 --- a/src/utils/pretty.ml +++ b/src/utils/pretty.ml @@ -14,7 +14,7 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) open Format @@ -99,6 +99,7 @@ let vee = "∨" let top = "⊤" let bottom = "⊥" let dummy = "☠" +let inverse = "⁻¹" let double_right_arrow = "⇒" let combining_overbar = "\204\133" let combining_underbar = "\204\178" diff --git a/src/utils/pretty.mli b/src/utils/pretty.mli index 42ec6cb..9064f8a 100644 --- a/src/utils/pretty.mli +++ b/src/utils/pretty.mli @@ -14,7 +14,7 @@ (***********************************************************************) (* - Time-stamp: + Time-stamp: *) exception InvalidUtf8Codepoint of int @@ -35,6 +35,7 @@ val vee : string val top : string val bottom : string val dummy : string +val inverse : string val double_right_arrow : string val overline : string -> string val underline : string -> string