enum BRKGA::PathRelinking::DistanceFunctionType

Overview

Specifies the distance function between two chromosomes during IPR. More…

#include <brkga_mp_ipr.hpp>

enum DistanceFunctionType {
    HAMMING,
    KENDALLTAU,
    CUSTOM,
};

Detailed Documentation

Specifies the distance function between two chromosomes during IPR.

Enum Values

HAMMING

Uses the default Hamming distance calculator.

KENDALLTAU

Uses the default KendallTau distance calculator.

CUSTOM

Indicates a custom function supplied by the user.