bool Route::operator==(const Route& right) const {
    bool result = this->getTourConst() == right.getTourConst(); // Compare right and *this here
    return result;
}