src/Pure/sorts.ML
changeset 3633 1884b433c6a5
parent 2990 271062b8c461
child 3783 37fb4f64eb9d
--- a/src/Pure/sorts.ML	Wed Aug 06 15:07:33 1997 +0200
+++ b/src/Pure/sorts.ML	Wed Aug 06 15:07:53 1997 +0200
@@ -9,6 +9,7 @@
 sig
   type classrel
   type arities
+  val str_of_classrel: class * class -> string
   val str_of_sort: sort -> string
   val str_of_arity: string * sort list * sort -> string
   val class_eq: classrel -> class * class -> bool
@@ -64,6 +65,8 @@
 
 (* print sorts and arities *)
 
+fun str_of_classrel (c1, c2) = c1 ^ " < " ^ c2;
+
 fun str_of_sort [c] = c
   | str_of_sort cs = enclose "{" "}" (commas cs);