Function PGASetDEJitter
Defined in File mutation.c
Function Documentation
-
void PGASetDEJitter(PGAContext *ctx, double val)
Set the jitter for Differential Evolution.
Description
By default jitter is turned off (the value is 0 by default). Very small amounts (on the order of 0.001) have been recommended for some problems like digital filter design. See section Mutation in the user guide for details.
Example
PGAContext *ctx; ... PGASetDEJitter (ctx, 0.001);
- Parameters:
ctx – context variable
val – the jitter for Differential Evolution
- Returns:
None