In bench.c, we make sequences a and b identical sequences and both of length 10000. And we then add a statement
printf("m(%lld)\n", m);
after line 3674 of file gaba.c.
When we compile and run bench.c, it always output
m(9984)
while the normal output should be
m(10000).
Is there something going wrong?
In bench.c, we make sequences a and b identical sequences and both of length 10000. And we then add a statement
printf("m(%lld)\n", m);
after line 3674 of file gaba.c.
When we compile and run bench.c, it always output
m(9984)
while the normal output should be
m(10000).
Is there something going wrong?