src/Pure/ML/ml_statistics_dummy.ML
author hoelzl
Tue, 09 Apr 2013 14:04:41 +0200
changeset 51641 cd05e9fcc63d
parent 50280 0eb9b5d09f31
permissions -rw-r--r--
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)

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