A S4 class storing all relevant data from an optimization with EmiR.
algorithmthe name of the algorithm.
iterationsthe number of iterations.
population_sizethe number of individuals in the population.
obj_functionthe minimized/maximized objective function.
constraintsthe constraints the objective function is subjected to.
best_costthe best value of the objective function found.
best_parametersthe parameter values for which the best cost was obtained.
parameter_rangethe range on the parameters.
pop_historylist containing the positions of all individuals in the
population at each iteration. The list is filled only if save_pop_history
is TRUE in the options of the minimizer (see MinimizerOpts).
cost_historythe vector storing the best value of the objective function at each iteration.
exec_time_secthe execution time in seconds.
is_maximizationif TRUE the objective function has been maximized insted of
being minimized.