From f1b166145e4b441d4f47b54be63cc4df9376a831 Mon Sep 17 00:00:00 2001 From: Marco De Lucia Date: Thu, 12 Dec 2024 18:05:50 +0100 Subject: [PATCH] reverting since gcc < 13 does not support it --- src/poet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/poet.cpp b/src/poet.cpp index 93a168496..3da740096 100644 --- a/src/poet.cpp +++ b/src/poet.cpp @@ -39,7 +39,6 @@ #include #include #include -#include #include @@ -294,11 +293,12 @@ static Rcpp::List RunMasterLoop(RInsidePOET &R, const RuntimeParameters ¶ms, const double &dt = params.timesteps[iter - 1]; std::cout << std::endl; + /* displaying iteration number, with C++ and R iterator */ MSG("Going through iteration " + std::to_string(iter) + "/" + std::to_string(maxiter)); - MSG("Current time step is " + std::format("{:.2f}", dt)); + MSG("Current time step is " + std::to_string(dt)); /* run transport */ diffusion.simulate(dt);