PGASetRandomSeed - set a seed for the random number generator.
The default is to use a random seed. Specifying a seed exlicitly
allows for reproducibility of runs.
ctx - context variable
seed - seed for the random number generator
none
#include "pgapack.h"
void PGASetRandomSeed(ctx, seed)
PGAContext *ctx
int seed
random.c
Example:
PGAContext *ctx;
:
PGASetRandomSeed(ctx,1);
05/01/95 PGASetRandomSeed(5)