Reformatting for consistency.
[cellular-automata.git] / 003 / src / life.erl
index 74868da..5f91d26 100644 (file)
@@ -61,7 +61,12 @@ life_loop(
         end
     ),
 
-    {NewTime, NewBoard} = timer:tc(fun() -> next_generation(X, Y, Board) end),
+    {NewTime, NewBoard} = timer:tc(
+        fun() ->
+            next_generation(X, Y, Board)
+        end
+    ),
+
     NewState = State#state{board        = NewBoard
                           ,gen_count    = GenCount + 1
                           ,gen_duration = NewTime
This page took 0.026585 seconds and 4 git commands to generate.