From f296bd93a1a47f96164a411cb92a88761460038d Mon Sep 17 00:00:00 2001 From: Max Luebke Date: Thu, 17 Feb 2022 09:26:42 +0100 Subject: [PATCH] Increase iterations to 10 --- src/main_2D.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main_2D.cpp b/src/main_2D.cpp index 49878ab..fbcfaf5 100644 --- a/src/main_2D.cpp +++ b/src/main_2D.cpp @@ -32,9 +32,7 @@ int main(int argc, char *argv[]) { cout << setprecision(12); - // loop 100 times - // output is currently generated by the method itself - for (int t = 0; t < 1; t++) { + for (int t = 0; t < 10; t++) { diffu.simulate(field, alpha); cout << "Iteration: " << t << "\n\n";