From 8fd5d76df38bcb232c9789af1a225f6af76162ee Mon Sep 17 00:00:00 2001 From: lavistam <20384517+matiaslavista@users.noreply.github.com> Date: Wed, 22 May 2019 15:17:46 -0500 Subject: [PATCH] Style --- src/eigenvalue.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/eigenvalue.cpp b/src/eigenvalue.cpp index 0d6aa19b38..04fdabab1b 100644 --- a/src/eigenvalue.cpp +++ b/src/eigenvalue.cpp @@ -389,12 +389,12 @@ int openmc_get_keff(double* k_combined) k_combined[0] = 0.0; k_combined[1] = 0.0; - //Special case for n <=3. Notice that at the end, - //there is a N-3 term in a denominator. + // Special case for n <=3. Notice that at the end, + // there is a N-3 term in a denominator. if (simulation::n_realizations <= 3) { k_combined[0] = simulation::keff; k_combined[1] = simulation::keff_std; - if (simulation::n_realizations <=1){ + if (simulation::n_realizations <=1) { k_combined[1] = std::numeric_limits::infinity(); } return 0;