Database
de.txt
Associated article: Differential Evolution
Tags: Database Parallel
Published source code accompanying the article by Kenneth Price and Rainer Storn that describe one branch of genetic algorithms-- Evolution Strategies--that are significantly faster at numerical optimization than traditional genetic algorithms. Also see DE.ZIP
Differntial Evolution
by Kenneth Price and Rainer Storn
Listing One
while (count < gen_max) /* Halt after gen_max generations. */
{
for (i=0; i<NP; i++) /* Start loop through population. */
{
/********** Mutate/recombine **********/
do a=rnd_uni()*NP; while (a==i); /* ...


