tuned;
authorwenzelm
Wed, 11 Oct 2023 13:49:08 +0200
changeset 78762 89202852e52c
parent 78761 6b3f13d39612
child 78763 b7157c137855
tuned;
src/Pure/Concurrent/isabelle_thread.ML
--- a/src/Pure/Concurrent/isabelle_thread.ML	Wed Oct 11 12:37:11 2023 +0200
+++ b/src/Pure/Concurrent/isabelle_thread.ML	Wed Oct 11 13:49:08 2023 +0200
@@ -85,8 +85,7 @@
 val threads_stack_limit = Unsynchronized.ref 0.25;
 
 fun default_stack_limit () =
-  let
-    val limit = Real.floor (! threads_stack_limit * 1024.0 * 1024.0 * 1024.0);
+  let val limit = Real.floor (! threads_stack_limit * 1024.0 * 1024.0 * 1024.0)
   in if limit <= 0 then NONE else SOME limit end;
 
 abstype params = Params of {name: string, stack_limit: int option, interrupts: bool}