Changes
Page history
Update Documentation
authored
Jul 14, 2022
by
Christian Reuschling
Show whitespace changes
Inline
Side-by-side
Documentation.md
View page @
fdd31b22
...
...
@@ -18,32 +18,37 @@ All is simply as returned from the parents fitness function invocation.
Following an example of a stdInd json structure a fitness function call will receive:
```
json
{
"generation"
:
7
,
"candidateVectorParamNames"
:
[
"summandA"
,
"summandB"
,
"summandC"
,
"summandD"
],
"candidateVector"
:
[
"3"
,
"10"
,
"1
0"
,
"0"
],
"candidateVector"
:
[
"2"
,
"0"
,
"
0"
,
"0"
],
"parentsMetadata"
:
[
{
"shellVarNameExample"
:
"shellVarValueExample"
,
"
givenVect
or"
:
"
5,25,10,
0"
"
sc
or
e
"
:
"0"
},
{
"shellVarNameExample"
:
"shellVarValueExample"
,
"
givenVect
or"
:
"
3,10,10,
0"
"
sc
or
e
"
:
"0"
}
],
"eliteMetadata"
:
[
{
"shellVarNameExample"
:
"shellVarValueExample"
,
"
givenVect
or"
:
"
3,10,10,0
"
"
sc
or
e
"
:
"
1
"
},
{
"shellVarNameExample"
:
"shellVarValueExample"
,
"
givenVect
or"
:
"
3,10,10,0
"
"
sc
or
e
"
:
"
1
"
},
{
"shellVarNameExample"
:
"shellVarValueExample"
,
"givenVector"
:
"3,10,10,0"
"score"
:
"1"
}
],
"selectedEliteMetadata"
:
{
"shellVarNameExample"
:
"shellVarValueExample"
,
"score"
:
"1"
}
]
}
```
...
...
...
...