src/Pure/ML/ml_statistics_dummy.ML
author wenzelm
Thu, 18 Jul 2013 13:12:54 +0200
changeset 52696 38466f4f3483
parent 50280 0eb9b5d09f31
permissions -rw-r--r--
immutable theory values with full stamp record of every update (increase of stamp size for HOL: 20000 -> 100000, JinjaThreads: 65000 -> 300000) -- minimal measurable impact on inference kernel performance;

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