I'm trying to implement a lagged Fibonacci pseudo-random number generator for integers up to some maximum. It maintains an array of values

int values[SIZE] = { /* 55 seed values */ };

and uses the following function to return the next value

unsigned lagfib()
{
    static unsigned idx = 0;
    int r = values[idx];

    /* The following does not work: */
    values[idx] = (values[(idx-24) % SIZE] + values[(idx-55) % SIZE])
                 % MAX_VALUE;
    idx = (idx+1) % SIZE;
    return r;
}

In effect, values should be a simple ring buffer that is always full. The subtraction and modulo should wrap the index around to the end of the array. SIZE should always be at least 55, but I want to round up to 64 to speed up the modulo.

But apparently, I've got the modulo calculations wrong and I don't know how to fix them. Changing the index type to int doesn't improve things.

(PS.: Yes, static data is bad style, but I want this to be readable for both C and C++ programmers, since it pertains to both languages.)

link|improve this question

1  
Why is static data bad style (in C, or did you mean C++ only)? – pmg Oct 18 '10 at 13:20
In C it's also bad style, since it leads to non-reentrant code. – larsmans Oct 18 '10 at 13:24
@larsmans: Why is that bad? – endolith Feb 10 at 15:42
@endolith: because it makes code non-threadsafe. – larsmans Feb 10 at 16:16
@larsmans: Why is that bad? Or rather, when is it bad? The language construct wouldn't exist if it were always bad, would it? – endolith Feb 10 at 19:56
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

If e.g. idx is less than 24, you'll get wraparound to the other end of the number range of unsigned int. 55 is not a divisor of e.g. 2^32, so this will not give you correct results.

I can see two options:

  • Maintain three separate idx variables, offset by 24 and 55 respectively.
  • Do e.g. (idx - 24 + SIZE) % SIZE.

Actually, I would choose the first option, and avoid the modulo entirely by rewriting the increment as:

idx = ((SIZE-1) == idx) ? 0 : (idx+1);

which will probably be way faster than calculating modulo.

link|improve this answer
+1 and accepted, but I'm assuming modulo 64 is compiled to a bitmask op. I really should refresh my modular arithmetic. – larsmans Oct 18 '10 at 13:11
1  
@larsmans: Oh, so you do actually have SIZE == 64 in your code? – Oli Charlesworth Oct 18 '10 at 13:12
@larsmans: Incidentally, have you taken into account that your seed values will need to be in "reverse" order? – Oli Charlesworth Oct 18 '10 at 13:13
Back to SIZE=55, and noticed that idx + 55 - SIZE is now idx so I only need two indexes. Thanks a lot! – larsmans Oct 18 '10 at 13:42
feedback

Lets take idx = 0 and SIZE = 64.

(idx-24) % SIZE will be a very large value (4294967272 for a 32-bit int )as idx is unsigned, making it an invalid index.

To get the circular effect you should add SIZE before taking modulus:

(idx-24+SIZE) % SIZE will be (0-24+64)%64 which evaluates to 40.

link|improve this answer
idx is unsigned. – Oli Charlesworth Oct 18 '10 at 13:04
feedback

You're accessing values with a negative index. For example:

-24 % 55 == -24

So you'll need some logic to wrap around to the end of the array. C/C++ doesn't do this for you.

link|improve this answer
idx is unsigned. – Oli Charlesworth Oct 18 '10 at 13:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.