-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The definition of Schwefel function seems inconsistent with the implementation #837
Comments
Thanks for spotting these! There is a third mistake in the description: |
Also: in f23 and f24 "+ f_opt" is missing and for f21/22 we should add the reference M. Gallagher and B. Yuan. A General-Purpose Tunable Landscape Generator. IEEE Transactions on Evolutionary Computation 10(5):590-603, 2006. |
I started to have a look at the above as well as at #1266. The only unclear thing was whether the 100 should appear in front of the penalty term or not. It is not obvious to see that the implementation follows the LaTeX definition here but after checking the code carefully, I am convinced that @NDManh was correct in the sense that the The coco svn repository has now the updated LaTeX code (in |
It seems I spotted another mistake: Section 2.7, Step-Ellipsoid function, |
Nice catch! |
There is another small glitch in the definition of the Rosenbrock function |
All above errors are now addressed in the source file. |
The fixed document were uploaded to HAL and to |
If we respect to the implementation :
x_opt
in the formulaz = 100(Lambda^10(z^hat - x_opt) + x_opt)
should be2*abs(x_opt)
.- frac{1}{D} sum(...)
should be- frac{1}{100D} sum(...)
.(Thanks Niko, I've updated some expressions such that the context is more clear)
The text was updated successfully, but these errors were encountered: