diff --git a/cpp/purify/h5reader.h b/cpp/purify/h5reader.h index cb9370f9..64522c94 100644 --- a/cpp/purify/h5reader.h +++ b/cpp/purify/h5reader.h @@ -133,7 +133,7 @@ class H5Handler { } void _shuffle() { - std::uniform_int_distribution uni(_slicepos,_slicepos + _slicelen - 1); + std::uniform_int_distribution uni(_slicepos, _slicepos + _slicelen - 1); _batchpos = uni(_rng); } @@ -199,7 +199,7 @@ utilities::vis_params stochread_visibility(H5Handler& file, const size_t N, cons utilities::vis_params uv_vis; std::vector utemp = - file.stochread("u", N, true); //< shuffle batch starting position + file.stochread("u", N, true); //< shuffle batch starting position uv_vis.u = Eigen::Map>(utemp.data(), utemp.size(), 1); // found that a reflection is needed for the orientation