cec2020: implement Schwefel func
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a15050c033
commit
cf176f054e
@ -43,7 +43,9 @@ func BentCigar(x []float64) float64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Schwefel is the "Shifted and Rotated Schwefel's Function" of CEC2020.
|
// Schwefel is the "Shifted and Rotated Schwefel's Function" of CEC2020.
|
||||||
func Schwefel(x []float64) float64 { return 0 }
|
func Schwefel(x []float64) float64 {
|
||||||
|
return SchwefelModified(x)
|
||||||
|
}
|
||||||
|
|
||||||
// LunacekBiRastrigin is the "Shifted and Rotated Lunacek bi-Rastrigin Function" of CEC2020.
|
// LunacekBiRastrigin is the "Shifted and Rotated Lunacek bi-Rastrigin Function" of CEC2020.
|
||||||
func LunacekBiRastrigin(x []float64) float64 { return 0 }
|
func LunacekBiRastrigin(x []float64) float64 { return 0 }
|
||||||
|
Loading…
Reference in New Issue
Block a user