Parallel
gamaze.asc
Associated article: Genetic Algorithms
Tags: Parallel
_GENETIC ALGORITHMS_
by Mike Morrow
[LISTING ONE]
/*** GASystem -- Mike Morrow -- Objective function **/
#include "ga.h"
void objinit()
{
}
FIT_TYPE objective(s, len)
SEQ s;
int len;
{
FIT_TYPE n;
unsigned int i;
static char tgt[] = "...


