upped DFS cap

This commit is contained in:
Simon O'Shea
2023-08-09 14:36:15 -04:00
parent 8181a3426a
commit 62e310b9ed
@@ -208,7 +208,7 @@ public class Pathfinder
dfsStack.Push(initialState);
int cap = 90000;
int cap = 2000000;
while (dfsStack.Count > 0 && cap > 0)
{
Node currentNode = dfsStack.Pop();