.. index:: pair: namespace; BRKGA::PathRelinking .. _doxid-namespace_b_r_k_g_a_1_1_path_relinking: namespace BRKGA::PathRelinking ============================== .. toctree:: :hidden: enum_BRKGA_PathRelinking_DistanceFunctionType.rst enum_BRKGA_PathRelinking_PathRelinkingResult.rst enum_BRKGA_PathRelinking_Selection.rst enum_BRKGA_PathRelinking_Type.rst Overview ~~~~~~~~ Holds the enumerations for Path Relinking algorithms. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block namespace PathRelinking { // enums enum :ref:`DistanceFunctionType`; enum :ref:`PathRelinkingResult`; enum :ref:`Selection`; enum :ref:`Type`; // global functions :ref:`PathRelinkingResult`& :ref:`operator|=` ( :ref:`PathRelinkingResult`& lhs, :ref:`PathRelinkingResult` rhs ); } // namespace PathRelinking .. _details-namespace_b_r_k_g_a_1_1_path_relinking: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Holds the enumerations for Path Relinking algorithms. Global Functions ---------------- .. index:: pair: function; operator|= .. _doxid-namespace_b_r_k_g_a_1_1_path_relinking_1a2d5412296fb1fa7d2c016b69a1c1194e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`PathRelinkingResult`& operator|= ( :ref:`PathRelinkingResult`& lhs, :ref:`PathRelinkingResult` rhs ) Performs bitwise ``OR`` between two ``PathRelinkingResult`` returning the highest rank ``PathRelinkingResult``. For example * TOO_HOMOGENEOUS | NO_IMPROVEMENT == NO_IMPROVEMENT * NO_IMPROVEMENT | ELITE_IMPROVEMENT == ELITE_IMPROVEMENT * ELITE_IMPROVEMENT | BEST_IMPROVEMENT == BEST_IMPROVEMENT .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - lhs - the left-hand side status (lvalue). * - rhs - the right-hand side status (rvalue). .. rubric:: Returns: a PathRelinkingResult according to the table above.