re-enable Composition funcs (w/ Griewank solved)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
leo 2023-02-09 22:10:33 +01:00
parent 558a4bf561
commit f1fa67ab79
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

@ -20,10 +20,9 @@ var Functions = map[string]func([]float64) float64{
"Hybrid1": Hybrid1, "Hybrid1": Hybrid1,
"Hybrid2": Hybrid2, "Hybrid2": Hybrid2,
"Hybrid3": Hybrid3, "Hybrid3": Hybrid3,
// TODO(me): these panic right now. "Composition1": Composition1,
// "Composition1": Composition1, "Composition2": Composition2,
// "Composition2": Composition2, "Composition3": Composition3,
// "Composition3": Composition3,
} }
// FuncNames represents a numbered list of function name. // FuncNames represents a numbered list of function name.
@ -35,10 +34,9 @@ var FuncNames = map[int]string{
4: "Hybrid1", 4: "Hybrid1",
5: "Hybrid2", 5: "Hybrid2",
6: "Hybrid3", 6: "Hybrid3",
// TODO(me): these panic right now. 7: "Composition1",
// 7: "Composition1", 8: "Composition2",
// 8: "Composition2", 9: "Composition3",
// 9: "Composition3",
} }
// SearchRange specifies the CEC2020 search range. // SearchRange specifies the CEC2020 search range.