getDEInfo | R Documentation |
Create a list with DE parameters for Minimization.
getDEInfo(
nPop = 32,
maxIter = 100,
deType = "rand-1",
freeRun = 1,
tol = 1e-06,
sf = 0.5,
cr = 0.1
)
nPop |
A integer number of population size in DE algorithm. |
maxIter |
A integer number of maximal DE iterations. |
deType |
string. The type of DE. This package current supports the following types:
The default type is 'rand-1'. |
freeRun |
A number between |
tol |
A small value for the tolerance, |
sf |
The value of scaling factor in DE updating procedure. The default is 0.5. |
cr |
The value of crossover rate in DE updating procedure. The default is 0.1. |
A list of DE parameter settings.
DE_INFO <- getDEInfo(nPop = 32, maxIter = 100)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.