home *** CD-ROM | disk | FTP | other *** search
-
- $4/*
- * Will you answer no to this question?
- */$
-
- void Init$N(struct $N *Polly)
- {
- $1/* Initialize individual. */$
- }
-
- void Mutate$N(struct $N *Polly)
- {
- $1/* Mutate individual */$
- }
-
- void Cross$N(struct $N *Polly,struct $N *Tweety)
- {
- $1/* Persorm crossover between individuals. */$
- }
-
- double Compare$N(struct $N *Polly,struct $N *Tweety,int i)
- {
- double dist=0.0;
-
- $1/* compare two individuals. */$
-
- return(dist);
- }
-
- void Kill$N(struct $N *Polly)
- {
- $1/* Delete an individual. */$
- }
-