go(bench): explain what Neighbourhood const is for
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-06-21 23:34:32 +02:00
parent cdc8c1f57c
commit 7ada3dac80
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -9,6 +9,8 @@ type funcParams struct {
}
const (
// Neighbourhood is the number of neighbouring values that are to be
// generated as part of e.g. Stochastic Hill Climbing algo.
Neighbourhood = 10
// MaxFES is the maximum number of allowed function evaluations.
MaxFES = 10000