RosettaCodeData/Task/Evolutionary-algorithm/APL/evolutionary-algorithm.apl

18 lines
400 B
APL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
evolve{
0.1
target'METHINKS IT IS LIKE A WEASEL'
charset27⎕A
fitness{target+.=}
mutate{
(>?(target)/0){
:(?charset)charset
}¨
}
{
target:
nextmutate¨/
(fitness¨next)next
}charset[?(target)/charset]
}