From 6d252d7755287295828d768f09869b179185914d Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Thu, 4 Feb 2021 23:51:55 +0100 Subject: [PATCH] Increase iteration limit to 5000 I should really make this a command line argument, but I'm to tired right now... ZZzzzz... --- src/dijkstrasearch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dijkstrasearch.h b/src/dijkstrasearch.h index 62b9f27..576f7f5 100644 --- a/src/dijkstrasearch.h +++ b/src/dijkstrasearch.h @@ -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;