Hi guys,
For the function of domain->minimum_image, I believe the “if” statement like:
if ( fabs(delta[0]) > xprd_half)
should be replaced by
while (fabs(delta[0]) > xprd_half)
to make sure it will always do what it claims to do.
How do you think?
Lingti