enum BRKGA::PathRelinking::PathRelinkingResult

Overview

Specifies the result type/status of path relink procedure. More…

#include <brkga_mp_ipr.hpp>

enum PathRelinkingResult {
    TOO_HOMOGENEOUS   = 0,
    NO_IMPROVEMENT    = 1,
    ELITE_IMPROVEMENT = 3,
    BEST_IMPROVEMENT  = 7,
};

Detailed Documentation

Specifies the result type/status of path relink procedure.

Enum Values

TOO_HOMOGENEOUS

The chromosomes among the populations are too homogeneous and the path relink will not generate improveded solutions.

NO_IMPROVEMENT

Path relink was done but no improveded solution was found.

ELITE_IMPROVEMENT

An improved solution among the elite set was found, but the best solution was not improved.

BEST_IMPROVEMENT

The best solution was improved.