Increase iteration limit to 5000

I should really make this a command line argument, but I'm to tired
right now... ZZzzzz...
feature/trainlines-wip
Markus Koch 2021-02-04 23:51:55 +01:00
parent 36f4f48287
commit 6d252d7755
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
#include "dijkstragraph.h"
#define DIJKSTRA_SEARCH_MAX_ITERATIONS 2000
#define DIJKSTRA_SEARCH_MAX_ITERATIONS 5000
struct dijkstra_state {
struct dijkstra_path *cheapest_path;