numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Class to perform optimization using firefly algorithm [32], [33]. More...
#include <num_collect/opt/firefly_optimizer.h>
Public Types | |
using | objective_function_type = ObjectiveFunction |
Type of the objective function. | |
using | random_number_generator_type = std::mt19937 |
Type of the random number generator. | |
using | this_type = firefly_optimizer<ObjectiveFunction> |
This class. | |
using | value_type = typename objective_function_type::value_type |
Type of function values. | |
using | variable_scalar_type = typename variable_type::Scalar |
Type of scalars in variables. | |
using | variable_type = typename objective_function_type::variable_type |
Type of variables. | |
Public Member Functions | |
firefly_optimizer (const ObjectiveFunction &obj_fun=ObjectiveFunction()) | |
Construct. | |
auto | absorption_coeff (variable_scalar_type value) -> this_type & |
Set the light absorption coefficient. | |
auto | attractiveness_coeff (variable_scalar_type value) -> this_type & |
Set the coefficient of the attractiveness. | |
void | change_objective_function (const objective_function_type &obj_fun) |
Change the objective function. | |
void | configure_iteration_logger (logging::iterations::iteration_logger< firefly_optimizer< ObjectiveFunction > > &iteration_logger) const |
Configure an iteration logger. | |
auto | evaluations () const noexcept -> index_type |
Get the number of function evaluations. | |
void | init (const variable_type &lower, const variable_type &upper) |
Initialize the algorithm. | |
auto | is_stop_criteria_satisfied () const -> bool |
Determine if stopping criteria of the algorithm are satisfied. | |
void | iterate () |
Iterate the algorithm once. | |
auto | iterations () const noexcept -> index_type |
Get the number of iterations. | |
auto | max_evaluations (index_type value) -> this_type & |
Set the maximum number of function evaluations. | |
auto | num_fireflies (index_type value) -> this_type & |
Set the number of fireflies. | |
auto | opt_value () const -> const value_type & |
Get current optimal value. | |
auto | opt_variable () const -> const variable_type & |
Get current optimal variable. | |
auto | random_coeff (variable_scalar_type value) -> this_type & |
Set the coefficient of the random walk. | |
auto | seed (random_number_generator_type::result_type value) -> this_type & |
Change the seed of the random number generator. | |
![]() | |
optimizer_base (logging::log_tag_view tag) | |
Constructor. | |
auto | evaluations () const noexcept -> index_type |
Get the number of function evaluations. | |
auto | iterations () const noexcept -> index_type |
Get the number of iterations. | |
auto | opt_value () const |
Get current optimal value. | |
auto | opt_variable () const |
Get current optimal variable. | |
![]() | |
iterative_solver_base (logging::log_tag_view tag) | |
Constructor. | |
iterative_solver_base (logging::log_tag_view tag) | |
Constructor. | |
auto | is_stop_criteria_satisfied () const -> bool |
Determine if stopping criteria of the algorithm are satisfied. | |
auto | is_stop_criteria_satisfied () const -> bool |
Determine if stopping criteria of the algorithm are satisfied. | |
void | iterate () |
Iterate the algorithm once. | |
void | iterate () |
Iterate the algorithm once. | |
void | solve () |
Solve the problem. | |
void | solve () |
Solve the problem. | |
![]() | |
logging_mixin (log_tag_view tag) | |
Constructor. | |
template<typename Child> | |
void | configure_child_algorithm_logger_if_exists (Child &child) |
Configure a logger of a child algorithm if exists. | |
auto | logger () const noexcept -> const num_collect::logging::logger & |
Access to the logger. | |
auto | logger () noexcept -> num_collect::logging::logger & |
Access to the logger. | |
![]() | |
iteration_logger_mixin ()=default | |
Constructor. | |
void | configure_iteration_logger (num_collect::logging::iterations::iteration_logger< firefly_optimizer< ObjectiveFunction > > &iteration_logger) const |
Configure an iteration logger. | |
auto | initialize_iteration_logger () -> num_collect::logging::iterations::iteration_logger< firefly_optimizer< ObjectiveFunction > > & |
Get the iteration logger. | |
Private Member Functions | |
auto | evaluate_on (const variable_type &variable) -> value_type |
Evaluate a function value. | |
Static Private Member Functions | |
static auto | correct_value_if_needed (value_type value) noexcept -> value_type |
Correct function values if needed. | |
Private Attributes | |
variable_scalar_type | absorption_coeff_ {default_absorption_coeff} |
Light absorption coefficient. | |
variable_scalar_type | attractiveness_coeff_ {default_attractiveness_coeff} |
Coefficient of the attractiveness. | |
index_type | dim_ {0} |
Number of dimension. | |
index_type | evaluations_ {0} |
Number of function evaluations. | |
std::uniform_real_distribution< variable_scalar_type > | initial_distribution_ {} |
Distribution for the initial variables. (Uniform distribution from 0 to 1.) | |
index_type | iterations_ {0} |
Number of iterations. | |
variable_type | lower_ {} |
Element-wise lower limit. | |
index_type | max_evaluations_ {default_max_evaluations} |
Maximum number of function evaluations. | |
index_type | num_fireflies_ {default_num_fireflies} |
Number of fireflies. | |
objective_function_type | obj_fun_ |
Objective function. | |
value_type | opt_value_ {std::numeric_limits<value_type>::max()} |
Current optimal value. | |
variable_type | opt_variable_ {} |
Current optimal variable. | |
variable_scalar_type | random_coeff_ {default_random_coeff} |
Coefficient of the random walk. | |
random_number_generator_type | random_number_generator_ |
Random number generator. | |
std::normal_distribution< variable_scalar_type > | random_walk_distribution_ {} |
Distribution for random walk. (Standard normal distribution.) | |
variable_type | upper_ {} |
Element-wise upper limit. | |
Eigen::VectorX< value_type > | values_ |
Function values of the current variables. | |
util::vector< variable_type > | variable_changes_ |
Buffer of variable changes. | |
util::vector< variable_type > | variables_ |
Current variables. (Positions of fireflies.) | |
variable_type | width_ {} |
Element-wise width. | |
Static Private Attributes | |
static constexpr auto | default_absorption_coeff |
Default value of the light absorption coefficient. | |
static constexpr auto | default_attractiveness_coeff |
Default value of the coefficient of the attractiveness. | |
static constexpr index_type | default_max_evaluations = 10000 |
Default maximum number of function evaluations. | |
static constexpr index_type | default_num_fireflies = 200 |
Default value of the number of fireflies. | |
static constexpr auto | default_random_coeff |
Default value of the coefficient of the random walk. | |
Additional Inherited Members | |
![]() | |
auto | derived () const noexcept -> const firefly_optimizer< ObjectiveFunction > & |
Access derived object. | |
auto | derived () const noexcept -> const firefly_optimizer< ObjectiveFunction > & |
Access derived object. | |
auto | derived () noexcept -> firefly_optimizer< ObjectiveFunction > & |
Access derived object. | |
auto | derived () noexcept -> firefly_optimizer< ObjectiveFunction > & |
Access derived object. | |
Class to perform optimization using firefly algorithm [32], [33].
ObjectiveFunction | Type of the objective function. |
Definition at line 63 of file firefly_optimizer.h.
using num_collect::opt::firefly_optimizer< ObjectiveFunction >::objective_function_type = ObjectiveFunction |
Type of the objective function.
Definition at line 70 of file firefly_optimizer.h.
using num_collect::opt::firefly_optimizer< ObjectiveFunction >::random_number_generator_type = std::mt19937 |
Type of the random number generator.
Definition at line 82 of file firefly_optimizer.h.
using num_collect::opt::firefly_optimizer< ObjectiveFunction >::this_type = firefly_optimizer<ObjectiveFunction> |
This class.
Definition at line 67 of file firefly_optimizer.h.
using num_collect::opt::firefly_optimizer< ObjectiveFunction >::value_type = typename objective_function_type::value_type |
Type of function values.
Definition at line 79 of file firefly_optimizer.h.
using num_collect::opt::firefly_optimizer< ObjectiveFunction >::variable_scalar_type = typename variable_type::Scalar |
Type of scalars in variables.
Definition at line 76 of file firefly_optimizer.h.
using num_collect::opt::firefly_optimizer< ObjectiveFunction >::variable_type = typename objective_function_type::variable_type |
Type of variables.
Definition at line 73 of file firefly_optimizer.h.
|
inlineexplicit |
Construct.
[in] | obj_fun | Objective function. |
Definition at line 89 of file firefly_optimizer.h.
|
inline |
Set the light absorption coefficient.
[in] | value | Value. |
Definition at line 286 of file firefly_optimizer.h.
|
inline |
Set the coefficient of the attractiveness.
[in] | value | Value. |
Definition at line 271 of file firefly_optimizer.h.
|
inline |
Change the objective function.
[in] | obj_fun | Objective function. |
Definition at line 98 of file firefly_optimizer.h.
|
inline |
Configure an iteration logger.
[in] | iteration_logger | Iteration logger. |
Definition at line 212 of file firefly_optimizer.h.
|
inlinestaticnodiscardprivatenoexcept |
Correct function values if needed.
[in] | value | Function value. |
Definition at line 358 of file firefly_optimizer.h.
|
inlinenodiscardprivate |
Evaluate a function value.
[in] | variable | Variable. |
Definition at line 340 of file firefly_optimizer.h.
|
inlinenodiscardnoexcept |
Get the number of function evaluations.
Definition at line 246 of file firefly_optimizer.h.
|
inline |
Initialize the algorithm.
[in] | lower | Lower limit. |
[in] | upper | Upper limit. |
Definition at line 108 of file firefly_optimizer.h.
|
inlinenodiscard |
Determine if stopping criteria of the algorithm are satisfied.
Definition at line 205 of file firefly_optimizer.h.
|
inline |
Iterate the algorithm once.
init
functions) are assumed to have been done. Definition at line 143 of file firefly_optimizer.h.
|
inlinenodiscardnoexcept |
Get the number of iterations.
Definition at line 239 of file firefly_optimizer.h.
|
inline |
Set the maximum number of function evaluations.
[in] | value | Value. |
Definition at line 314 of file firefly_optimizer.h.
|
inline |
Set the number of fireflies.
[in] | value | Value. |
Definition at line 256 of file firefly_optimizer.h.
|
inlinenodiscard |
Get current optimal value.
Definition at line 232 of file firefly_optimizer.h.
|
inlinenodiscard |
Get current optimal variable.
Definition at line 225 of file firefly_optimizer.h.
|
inline |
Set the coefficient of the random walk.
[in] | value | Value. |
Definition at line 301 of file firefly_optimizer.h.
|
inline |
Change the seed of the random number generator.
[in] | value | Value. |
Definition at line 328 of file firefly_optimizer.h.
|
private |
Light absorption coefficient.
Definition at line 408 of file firefly_optimizer.h.
|
private |
Coefficient of the attractiveness.
Definition at line 397 of file firefly_optimizer.h.
|
staticconstexprprivate |
Default value of the light absorption coefficient.
Definition at line 400 of file firefly_optimizer.h.
|
staticconstexprprivate |
Default value of the coefficient of the attractiveness.
Definition at line 389 of file firefly_optimizer.h.
|
staticconstexprprivate |
Default maximum number of function evaluations.
Definition at line 454 of file firefly_optimizer.h.
|
staticconstexprprivate |
Default value of the number of fireflies.
Definition at line 383 of file firefly_optimizer.h.
|
staticconstexprprivate |
Default value of the coefficient of the random walk.
Definition at line 411 of file firefly_optimizer.h.
|
private |
Number of dimension.
Definition at line 380 of file firefly_optimizer.h.
|
private |
Number of function evaluations.
Definition at line 451 of file firefly_optimizer.h.
|
private |
Distribution for the initial variables. (Uniform distribution from 0 to 1.)
Definition at line 436 of file firefly_optimizer.h.
|
private |
Number of iterations.
Definition at line 448 of file firefly_optimizer.h.
|
private |
Element-wise lower limit.
Definition at line 371 of file firefly_optimizer.h.
|
private |
Maximum number of function evaluations.
Definition at line 457 of file firefly_optimizer.h.
|
private |
Number of fireflies.
Definition at line 386 of file firefly_optimizer.h.
|
private |
Objective function.
Definition at line 368 of file firefly_optimizer.h.
|
private |
Current optimal value.
Definition at line 445 of file firefly_optimizer.h.
|
private |
Current optimal variable.
Definition at line 442 of file firefly_optimizer.h.
|
private |
Coefficient of the random walk.
Definition at line 419 of file firefly_optimizer.h.
|
private |
Random number generator.
Definition at line 431 of file firefly_optimizer.h.
|
private |
Distribution for random walk. (Standard normal distribution.)
Definition at line 439 of file firefly_optimizer.h.
|
private |
Element-wise upper limit.
Definition at line 374 of file firefly_optimizer.h.
|
private |
Function values of the current variables.
Definition at line 428 of file firefly_optimizer.h.
|
private |
Buffer of variable changes.
Definition at line 425 of file firefly_optimizer.h.
|
private |
Current variables. (Positions of fireflies.)
Definition at line 422 of file firefly_optimizer.h.
|
private |
Element-wise width.
Definition at line 377 of file firefly_optimizer.h.