Here's why it's still officially a beta version.
known bugs and fixes in version 0.99b:
#define MAXARGS 3to #define MAXARGS 4 temp = (individual **)MALLOC ( s->bestn * sizeof ( individual * ) );Change it to: temp = (individual **)MALLOC ( (s->bestn+1) * sizeof ( individual * ) ); void app_eval_fitness ( individual *ind ) { . . . set_current_individiaul ( ind );should of course be void app_eval_fitness ( individual *ind ) { . . . set_current_individual ( ind );All these have been fixed in the distribution on the FTP and WWW sites. If you pulled it down prior to 1 July 1995, either make these fixes yourself or get it again.
|