A S4 class storing all relevant data from an optimization with EmiR.
algorithm
the name of the algorithm.
iterations
the number of iterations.
population_size
the number of individuals in the population.
obj_function
the minimized/maximized objective function.
constraints
the constraints the objective function is subjected to.
best_cost
the best value of the objective function found.
best_parameters
the parameter values for which the best cost was obtained.
parameter_range
the range on the parameters.
pop_history
list 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_history
the vector storing the best value of the objective function at each iteration.
exec_time_sec
the execution time in seconds.
is_maximization
if TRUE
the objective function has been maximized insted of
being minimized.