.. index:: pair: namespace; BRKGA .. _doxid-namespace_b_r_k_g_a: namespace BRKGA =============== .. toctree:: :hidden: namespace_BRKGA_PathRelinking.rst enum_BRKGA_BiasFunctionType.rst enum_BRKGA_Sense.rst enum_BRKGA_ShakingType.rst class_BRKGA_Population.rst Overview ~~~~~~~~ This namespace contains all facilities related to :ref:`BRKGA ` Multi Parent with Implicit Path Relinking. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block namespace BRKGA { // namespaces namespace :ref:`BRKGA::PathRelinking`; // typedefs typedef std::vector :ref:`Chromosome`; typedef double :ref:`fitness_t`; // enums enum :ref:`BiasFunctionType`; enum :ref:`Sense`; enum :ref:`ShakingType`; // classes class :ref:`AlgorithmStatus`; template class :ref:`BRKGA_MP_IPR`; class :ref:`BrkgaParams`; class :ref:`ControlParams`; class :ref:`DistanceFunctionBase`; class :ref:`HammingDistance`; class :ref:`KendallTauDistance`; class :ref:`Population`; // global variables static constexpr :ref:`fitness_t` :ref:`FITNESS_T_MIN` = FITNESS_T_MIN_TEMPLATE<:ref:`fitness_t`>; static constexpr :ref:`fitness_t` :ref:`FITNESS_T_MAX` = FITNESS_T_MAX_TEMPLATE<:ref:`fitness_t`>; constexpr double :ref:`EQUALITY_THRESHOLD` = 1e-6; // global functions template constexpr bool :ref:`close_enough`( T a, T b ); template < size_t I = 0, typename T, typename... Ts > constexpr bool :ref:`close_enough`( std::tuple a, std::tuple b ); INLINE std::pair<:ref:`BrkgaParams`, :ref:`ControlParams`> :ref:`readConfiguration`( std::istream& input, std::ostream& logger = std::cout ); INLINE std::pair<:ref:`BrkgaParams`, :ref:`ControlParams`> :ref:`readConfiguration`( const std::string& filename, std::ostream& logger = std::cout ); INLINE std::ostream& :ref:`operator <<` ( std::ostream& os, const :ref:`BrkgaParams`& brkga_params ); INLINE std::ostream& :ref:`operator <<` ( std::ostream& os, const :ref:`ControlParams`& control_params ); INLINE void :ref:`writeConfiguration`( std::ostream& output, const :ref:`BrkgaParams`& brkga_params, const :ref:`ControlParams`& control_params = :ref:`ControlParams`{} ); INLINE void :ref:`writeConfiguration`( const std::string& filename, const :ref:`BrkgaParams`& brkga_params, const :ref:`ControlParams`& control_params = :ref:`ControlParams`{} ); std::ostream& :ref:`operator <<` ( std::ostream& output, const :ref:`AlgorithmStatus`& status ); } // namespace BRKGA .. _details-namespace_b_r_k_g_a: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ This namespace contains all facilities related to :ref:`BRKGA ` Multi Parent with Implicit Path Relinking. Typedefs -------- .. index:: pair: typedef; Chromosome .. _doxid-namespace_b_r_k_g_a_1a8ae7fc2da08d2d93a0628f346e72fab6: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef std::vector Chromosome Chromosone representation. The chromosome is represented using a vector in the unitary hypercube, i.e., :math:`v \in [0,1]^n` where :math:`n` is the size of the array (dimensions of the hypercube). We use double precision because float precision maybe not be enough for some applications. We could use ``std::vector`` directly. However, using an alias, we can add additional capabilities to the Chromosome class in the future, such as parenting track. For example, we may want to do this: .. ref-code-block:: cpp class :ref:`Chromosome `: public std::vector { public: :ref:`Chromosome `() : std::vector(), my_personal_data(0.0) {} public: double my_personal_data; }; to keep track of some data within a specifc chromosome. In general, most people do not recommend to inherit publicly from ``std::vector`` because it has no virtual destructor. However, we may do that as long as: a) We remember that every operation provided by ``std::vector`` must be a semantically valid operation on an object of the derived class; b) We avoid creating derived class objects with dynamic storage duration; c) We **DO AVOID** polymorphism: .. ref-code-block:: cpp std::vector* pt = new :ref:`Chromosome `(); // Bad idea delete pt; // Delete does not call the Chromosome destructor .. index:: pair: typedef; fitness_t .. _doxid-namespace_b_r_k_g_a_1ae212772a5d4bb9b7055e30791b494514: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef double fitness_t Fitness type representation. In general, fitness_t is a single number for single-objective problems. For instance: .. ref-code-block:: cpp using :ref:`fitness_t ` = double; For multi-objective problems (with dominance/lexicographical sorting), we need to use multiple values. We can either use a class, structure, or ``std::tuple``. Using a custom class or structure, we must provide copy assignment (``operator=``), comparison operators (``operator<``, ``operator>``, and ``operator==``), and the streaming operator ``std::ostream& operator<<(std::ostream& os, const CustomFitness& fitness)`` where ``CustomFitness`` is your fitness structure. We have all these perks using ``std:tuple``. For example, assume we have three minimization objective functions. Then we may have: .. ref-code-block:: cpp using :ref:`fitness_t ` = std::tuple; .. note:: We do recommend use ``std::tuple``. Internally, BRKGA-MP-IPR doesn't use ``operator==`` directly. :ref:`BRKGA ` implements the custom function ``:ref:`close_enough() ```. For fundamental numerical types, it compares the absolute difference with a given :ref:`EQUALITY_THRESHOLD `, i.e., two numbers :math:`a` and :math:`b` equal if :math:`|a - b| < EQUALITY\_THRESHOLD`. For all other types (except ``std::tuple``), we use ``operator==``. For ``std::tuple``, we have a specialized function ``:ref:`close_enough() ``` that iterates over each element of the tuples calling the base ``:ref:`close_enough() ```. .. warning:: If you are using custom class other than fundamental types or tuples with fundamental types, you must also provide two const template expressions :ref:`FITNESS_T_MIN ` and :ref:`FITNESS_T_MAX `. Global Variables ---------------- .. index:: pair: variable; FITNESS_T_MIN .. _doxid-namespace_b_r_k_g_a_1a27f915fd21c02aee1097135954420ebb: .. ref-code-block:: cpp :class: doxyrest-title-code-block static constexpr :ref:`fitness_t` FITNESS_T_MIN = FITNESS_T_MIN_TEMPLATE<:ref:`fitness_t`> The actual minimal value to ``fitness_t``. .. index:: pair: variable; FITNESS_T_MAX .. _doxid-namespace_b_r_k_g_a_1aa4eaa93f02c949d7af918598c606402f: .. ref-code-block:: cpp :class: doxyrest-title-code-block static constexpr :ref:`fitness_t` FITNESS_T_MAX = FITNESS_T_MAX_TEMPLATE<:ref:`fitness_t`> The actual Maximum value to ``fitness_t``. .. index:: pair: variable; EQUALITY_THRESHOLD .. _doxid-namespace_b_r_k_g_a_1a8d1d184901bb4f34c71c7bb73a86a84a: .. ref-code-block:: cpp :class: doxyrest-title-code-block constexpr double EQUALITY_THRESHOLD = 1e-6 This constant is used to compare floating-point numbers to equality. Therefore, we consider two numbers :math:`a` and :math:`b` equal if :math:`|a - b| < EQUALITY\_THRESHOLD`. Currently, this constant is only used during IPR procedures to compare fitness with fundamental types (int, flot, char, etc), either single type or embedded in a tuple. If your ``fitness_t`` has a custom type, this is not applied, as explained in :ref:`fitness_t `.