I have been looking in detail into one of the many "meta-heuristic" optimization algorithms and became suspicious at how well it appeared to perform (compared to other methods like Nelder-Mead, Multi-Directional search, and Spiral optimization) on a "pathological" test function, Rastrigin.
If any of you good people are using the Rastrigin function in your work, can I ask you to try "shifting" the origin so that it sits at e.g. (2,3,5) in 3D, and see if it causes any algorithms you are using to perform adversely? My suspicion is that some (many?) algorithms have a tendency to favour the origin as a solution!
Suffice to say the methods I mentioned by name earlier can cope with the shift in origin as well as they do without it.
[EDIT] I am currently "hardening" all my test functions with a minimum at the origin, shifting each numbered coordinate variable by the coordinate index.
[EDIT] Regarding the paper linked in @Lysistrata's answer below. It turns out that not only does the method I hinted at above appear on the "naughty list" (the red items in Table 3), but its author and his associates are identified as the source of "20 of the 47 methods that contain centre-bias"!
[UPDATE] It was already on the cards (because of suspicious visual "artifacts" when viewing operation on 3D problems, and the absence of any useful mathematical description of its "mechanism"), but following the valuable contributions in these answers and the references contained, I have now dropped the offending algorithm from my project.