src/Pure/ML-Systems/ml_pretty.ML
author hoelzl
Wed, 29 Apr 2009 20:19:50 +0200
changeset 31098 73dd67adf90a
parent 30623 9ed1122d6cd2
child 38635 f76ad0771f67
permissions -rw-r--r--
replaced Ifloat => real_of_float and real, renamed ApproxEq => inequality, uneq => interpret_inequality, uneq' => approx_inequality, Ifloatarith => interpret_floatarith

(*  Title:      Pure/ML-Systems/ml_pretty.ML
    Author:     Makarius

Raw datatype for ML pretty printing.
*)

structure ML_Pretty =
struct

datatype pretty =
  Block of (string * string) * pretty list * int |
  String of string * int |
  Break of bool * int;

end;