From 43374804b34e7866a689fdc2dfef77d5af832cc5 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Fri, 15 Nov 2024 09:28:39 +0100 Subject: [PATCH] Speedup --- wash/src/wash/control/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wash/src/wash/control/Settings.java b/wash/src/wash/control/Settings.java index 733582c..26433e9 100644 --- a/wash/src/wash/control/Settings.java +++ b/wash/src/wash/control/Settings.java @@ -3,5 +3,5 @@ package wash.control; public interface Settings { // simulation speed-up factor: 50 means the simulation is 50 times faster than // real time. Modify this as you wish. - int SPEEDUP = 50; + int SPEEDUP = 400; }