From 05fe1dc5a5137880f28169582157c814574f35f5 Mon Sep 17 00:00:00 2001 From: John Tramm Date: Mon, 2 Dec 2019 21:49:19 +0000 Subject: [PATCH] removed ifdef guard for openmp when populating fission bank --- src/simulation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simulation.cpp b/src/simulation.cpp index 9f3c7a7f2c..6b9e91ed81 100644 --- a/src/simulation.cpp +++ b/src/simulation.cpp @@ -1253,7 +1253,7 @@ void finalize_generation() if (settings::run_mode == RUN_MODE_EIGENVALUE) { -#ifdef _OPENMP +//#ifdef _OPENMP // Join the fission bank from each thread into one global fission bank //join_bank_from_threads(); @@ -1264,7 +1264,7 @@ void finalize_generation() for( int i = 0; i < shared_fission_bank_length; i++ ) simulation::fission_bank.push_back(shared_fission_bank[i]); shared_fission_bank_length = 0; -#endif +//#endif // Sorts the fission bank so as to allow for reproducibility //std::sort(simulation::fission_bank.begin(), simulation::fission_bank.end(), bank_site_comparator()); //std::sort(simulation::fission_bank.begin(), simulation::fission_bank.end());