From 39bee2e2e6f0c3b92f57ad735fffd1d80957a374 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Wed, 13 Mar 2024 13:26:07 +0100 Subject: [PATCH] Reduce number of timesteps for testing to 1000 Signed-off-by: Christoph Niethammer --- sequential.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequential.cpp b/sequential.cpp index 14a487d..74fef9c 100644 --- a/sequential.cpp +++ b/sequential.cpp @@ -28,7 +28,7 @@ int main() * * Changing of any of them might result in NaN error. */ - int dt = 100000; + int dt = 1000; double h = 0.007;