chore: add jDE.go
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
leo 2022-12-27 01:27:16 +01:00
parent f25011b7fc
commit 84fcad715c
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ

9
algo/jDE.go Normal file
View File

@ -0,0 +1,9 @@
// 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
}