enabledSharedStatistic

open override var enabledSharedStatistic: Boolean

Shared statistics: DistributedGA is collector for each child statistics - statistics of DistributedGA includes all statistics of children.

If true (default):

val dGA(...) {
+pGAs(...) { index ->
evolve {
...
stat("Child $index iteration", iteration)
}
}

evolve {
...
stat("Distributed iteration", iteration)
}
}.collect {
// Children and parent iterations collects here
}.startBlocking()