This repository contains the source code and experimental results for the article "Advanced Sales Route Optimization through Enhanced Genetic Algorithms and Real-Time Navigation Systems". This work improves the original approach proposed by Zambrano-Vega et al. (2019) by integrating a Hybrid Genetic Algorithm (HGA) combined with Adaptive Mutation, Tabu Search, and Machine Learning techniques to optimize sales routes efficiently.
The proposed method allows real-time route reoptimization based on traffic conditions, weather, and other external factors. Experimental results demonstrate a 20% reduction in total traveled distance and a 15% improvement in delivery time compared to the original model.
- Hybrid Genetic Algorithm (HGA) for optimized sales route planning.
- Adaptive Mutation Operator to maintain diversity and avoid premature convergence.
- Tabu Search to refine solutions and escape local optima.
- LSTM-based Machine Learning Model for travel time prediction considering real-time traffic and weather conditions.
- Integration with Google Maps API for real-time navigation.
- Preprocess the data:
python scripts/procesamiento.py
- Generate the optimization problem:
python scripts/problem_gen.py
- Train the LSTM model (Optional, pretrained model available):
python scripts/traininLSMT.py
- Run the Hybrid Genetic Algorithm:
python scripts/Genetic_algorithm.py
| Method | Total Distance (km) | Delivery Time (min) | Computation Time (s) | Diversity Score |
|---|---|---|---|---|
| Traditional GA | 500 | 480 | 120 | Low |
| GA + Adaptive Mutation | 450 (↓10%) | 432 (↓10%) | 130 | Medium |
| GA + Adaptive Mutation + Tabu Search | 427 (↓15%) | 408 (↓15%) | 150 | High |