math-optim/algo/jDE.go
leo 84fcad715c
All checks were successful
continuous-integration/drone/push Build is passing
chore: add jDE.go
2022-12-27 01:27:16 +01:00

10 lines
225 B
Go

// Copyright 2022 wanderer <a_mirre at utb dot cz>
// SPDX-License-Identifier: GPL-3.0-or-later
package algo
// Evolve runs an evolution algorithm on population (WIP).
func Evolve(population any) any {
return population
}