Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit fd4978bd authored by adelmann's avatar adelmann :reminder_ribbon:
Browse files

if see is -1, on all ranks the seed is 1234567, so we can better compare results

parent fb713738
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,17 @@ public:
: SamplingBase(pc, fc, opalDist) {}
void generateParticles(size_t& numberOfParticles, Vector_t<double, 3> nr) override {
GeneratorPool rand_pool64((size_t)(Options::seed + 100 * ippl::Comm->rank()));
size_t randInit;
if (Options::seed == -1) {
randInit = 1234567;
*gmsg << "* Seed = " << randInit << " on all ranks" << endl;
}
else
randInit = (size_t)(Options::seed + 100 * ippl::Comm->rank());
GeneratorPool rand_pool64(randInit);
double mu[3], sd[3];
// sample R
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment