From cd87d0f43eb81563fd303875ff4c83fe382ea99f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kim=20Nguy=E1=BB=85n?= Date: Sat, 9 Mar 2013 11:07:25 +0100 Subject: [PATCH] Add the inverse string (superscript -1) to the module. --- src/utils/pretty.ml | 3 ++- src/utils/pretty.mli | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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 -- 2.17.1