Subject: | srand() seed |
The random number generator is seeded with a small static integer value.
In bloom.c there is srand(CONS) where CONS is defined as 1234567 in
bloom.h. Is this necessary? Perhaps at least seed with time()? Or is
there some reason the sequence should be reproducible?