diff options
Diffstat (limited to '')
-rw-r--r-- | Source/Parallelization/GuardCellManager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Parallelization/GuardCellManager.cpp b/Source/Parallelization/GuardCellManager.cpp index c75b7426f..a74a04cbe 100644 --- a/Source/Parallelization/GuardCellManager.cpp +++ b/Source/Parallelization/GuardCellManager.cpp @@ -102,9 +102,9 @@ guardCellManager::Init( // is determined *empirically* to be the order of the solver // for nodal, and half the order of the solver for staggered. - int ngFFt_x = do_nodal ? nox_fft : nox_fft/2.; - int ngFFt_y = do_nodal ? noy_fft : noy_fft/2.; - int ngFFt_z = do_nodal ? noz_fft : noz_fft/2.; + int ngFFt_x = do_nodal ? nox_fft : nox_fft/2; + int ngFFt_y = do_nodal ? noy_fft : noy_fft/2; + int ngFFt_z = do_nodal ? noz_fft : noz_fft/2; ParmParse pp("psatd"); pp.query("nx_guard", ngFFt_x); |