let
get_pathfinding_name n =
match
n
with
|
0
->
"Dijkstra"
|
1
->
"A*"
|
_
->
"A* Greedy"