fix: add fallback mutation for small routes in GA crossover#196
Open
arybhatt4533 wants to merge 1 commit into52North:mainfrom
Open
fix: add fallback mutation for small routes in GA crossover#196arybhatt4533 wants to merge 1 commit into52North:mainfrom
arybhatt4533 wants to merge 1 commit into52North:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description:
This PR addresses stability issues and potential crashes in the Genetic Algorithm crossover operators (SinglePointCrossover and TwoPointCrossover) when dealing with short routes.
Key Changes:
Introduced fallback_mutate: Added a safety mechanism in OffspringRejectionCrossover. When a route is too small for a standard crossover (e.g., < 3 waypoints for SP or < 6 for TP), the algorithm now applies a small random mutation instead of returning identical parents or crashing.
Fixed Coordinate Slicing: Ensured that only Latitude and Longitude (0:2) are passed to the patchfn.patch method. This prevents errors when waypoints contain additional data like speed or time.
Type Casting Safety: Added .astype(float) in the mutation logic to prevent NumPy UFuncOutputCastingError when performing arithmetic operations on integer-based test arrays.
Boundary Protection: Updated np.random.randint ranges to strictly avoid modifying start and end waypoints, ensuring route integrity.
Verification:
Tested with routes of size 2 (triggered SP fallback).
Tested with routes of size 4 (triggered TP fallback).
Verified that no CastingError occurs during coordinate perturbation.