Skip to content

Commit ad81a98

Browse files
authored
Update README.md
1 parent 1ee3b0e commit ad81a98

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
11
# vrptw-solver-comparison
2-
Solving Vehicle Rounting Problem with Time Windows using multiple Classic Heuristic, Metaheuristic algorithms (Hybrid Genetic Search (HGS), Guided Local Search (GLS), Ant Colony Optimisation (ACO), Simulated Annealing (SA)), then comparing result's with each one's results and present it in the graph. This was my master's thesis project.
2+
Solving Vehicle Rounting Problem with Time Windows using multiple Classic Heuristic, Metaheuristic algorithms (Hybrid Genetic Search (HGS), Guided Local Search (GLS), Ant Colony Optimisation (ACO), Simulated Annealing (SA)), then comparing the results with each one's results and represent it in the graph. This was my master's thesis project.
3+
4+
# keywords
5+
Vehicle Routing Problems with Time Window (VRPTW), Hybrid Genetic Search (HGS), Guided Local Search (GLS), Ant Colony Optimization (ACO), Simulated Annealing (SA), MACS-VRPTW, Genetic Algorithm (GA), Exact, Heuristics, Metaheuristics, Machine Learning Algorithms, GRASP, Local Search (LS), Neighborhood Search, OR-Tools, VRP, VRPTW, Vehicle Routing Problems (VRP), pyVRP.
6+
7+
# Development
8+
9+
## Create venv
10+
11+
```sh
12+
python -m venv .venv
13+
```
14+
15+
## Activate venv
16+
17+
```sh
18+
. .venv/bin/activate
19+
```
20+
21+
## Install requirements
22+
23+
```sh
24+
pip install -r requirements.txt

0 commit comments

Comments
 (0)