DESCRIPTION

The default is 0.85.

INPUT PARAMETERS

ctx

- context variable

p

- the crossover probability

OUTPUT PARAMETERS

none

SYNOPSIS

#include "pgapack.h"
void  PGASetCrossoverProb(ctx, crossover_prob)
PGAContext *ctx
double crossover_prob

LOCATION

cross.c

EXAMPLE

Example:
Make crossover happen infrequently.

PGAContext *ctx;
:
PGASetCrossoverProb(ctx,0.001);