src/Pure/ML/ml_statistics_dummy.ML
author wenzelm
Mon, 18 Aug 2014 12:17:31 +0200
changeset 57978 8f4a332500e4
parent 50280 0eb9b5d09f31
permissions -rw-r--r--
Added tag Isabelle2014-RC4 for changeset 113b43b84412

(*  Title:      Pure/ML/ml_statistics_dummy.ML
    Author:     Makarius

ML runtime statistics -- dummy version.
*)

signature ML_STATISTICS =
sig
  val get: unit -> Properties.T
end;

structure ML_Statistics: ML_STATISTICS =
struct

fun get () = [];

end;