src/Pure/RAW/ml_compiler_parameters.ML
author Manuel Eberl <eberlm@in.tum.de>
Tue, 19 Jan 2016 11:19:25 +0100
changeset 62201 eca7b38c8ee5
parent 62058 1cfd5d604937
permissions -rw-r--r--
Added approximation of powr to NEWS/CONTRIBUTORS

(*  Title:      Pure/RAW/ml_compiler_parameters.ML
    Author:     Makarius

Additional ML compiler parameters for Poly/ML.
*)

signature ML_COMPILER_PARAMETERS =
sig
  val debug: bool -> PolyML.Compiler.compilerParameters list
end;

structure ML_Compiler_Parameters: ML_COMPILER_PARAMETERS =
struct

fun debug _ = [];

end;