From b66298b0fba43c55b3f3cbe51b91b766e0e2268e Mon Sep 17 00:00:00 2001 From: Ben Haller Date: Sat, 5 Aug 2023 20:02:43 -0400 Subject: [PATCH] turn on notice of non-parallel build --- core/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/main.cpp b/core/main.cpp index fe747f33..1630f15c 100644 --- a/core/main.cpp +++ b/core/main.cpp @@ -67,8 +67,7 @@ static void PrintUsageAndDie(bool p_print_header, bool p_print_full_usage) #ifdef _OPENMP SLIM_OUTSTREAM << "This is a PARALLEL (MULTI-THREADED) build of SLiM." << std::endl; #else - // For now, I don't want to advertise the existence of parallel builds - //SLIM_OUTSTREAM << "This is a NON-PARALLEL (SINGLE-THREADED) build of SLiM." << std::endl; + SLIM_OUTSTREAM << "This is a NON-PARALLEL (SINGLE-THREADED) build of SLiM." << std::endl; #endif #if (SLIMPROFILING == 1) SLIM_OUTSTREAM << "This is a PROFILING build of SLiM." << std::endl;