changeset 48251 | 6cdcfbddc077 |
parent 48247 | 8f37d2ddabc8 |
child 48302 | 6cf5e58f1185 |
--- a/src/HOL/Tools/ATP/atp_problem_generate.ML Wed Jul 11 21:43:19 2012 +0200 +++ b/src/HOL/Tools/ATP/atp_problem_generate.ML Wed Jul 11 21:43:19 2012 +0200 @@ -252,10 +252,6 @@ Other characters go to _nnn where nnn is the decimal ASCII code.*) val upper_a_minus_space = Char.ord #"A" - Char.ord #" " -fun stringN_of_int 0 _ = "" - | stringN_of_int k n = - stringN_of_int (k - 1) (n div 10) ^ string_of_int (n mod 10) - fun ascii_of_char c = if Char.isAlphaNum c then String.str c