src/Pure/ML/ml_statistics_dummy.ML
author blanchet
Mon, 03 Mar 2014 12:58:17 +0100
changeset 55874 7eff011e2b36
parent 50280 0eb9b5d09f31
permissions -rw-r--r--
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick

(*  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;