# A results tuple from CMAEvolutionStrategy property result.
# "
# A results tuple from CMAEvolutionStrategy property result.
# This tuple contains in the given position and as attribute
# This tuple contains in the given position and as attribute
# 0 xbest best solution evaluated
# 0 xbest best solution evaluated
# 1 fbest objective function value of best solution
# 1 fbest objective function value of best solution
# 2 evals_best evaluation count when xbest was evaluated
# 2 evals_best evaluation count when xbest was evaluated
@ -939,6 +938,9 @@ class ProcessHeadCalibrationDataNode:
# 4 iterations
# 4 iterations
# 5 xfavorite distribution mean in "phenotype" space, to be considered as current best estimate of the optimum
# 5 xfavorite distribution mean in "phenotype" space, to be considered as current best estimate of the optimum
# 6 stds effective standard deviations, can be used to compute a lower bound on the expected coordinate-wise distance to the true optimum, which is (very) approximately stds[i] * dimension**0.5 / min(mueff, dimension) / 1.5 / 5 ~ std_i * dimension**0.5 / min(popsize / 2, dimension) / 5, where dimension = CMAEvolutionStrategy.N and mueff = CMAEvolutionStrategy.sp.weights.mueff ~ 0.3 * popsize.
# 6 stds effective standard deviations, can be used to compute a lower bound on the expected coordinate-wise distance to the true optimum, which is (very) approximately stds[i] * dimension**0.5 / min(mueff, dimension) / 1.5 / 5 ~ std_i * dimension**0.5 / min(popsize / 2, dimension) / 5, where dimension = CMAEvolutionStrategy.N and mueff = CMAEvolutionStrategy.sp.weights.mueff ~ 0.3 * popsize.