Timeouts with any other algorithm than AStar

Hello,
unfortunately, I get a lot of timeouts if I execute the search using any other algorithm than AStarSearch (also with the other preimplemented ones). AStar works fine and I get the expected solution (± 320 solved scenarios). But even there if I change something to the heuristic_function implemented in best_first_search.py such as just return 0.0, AStar won’t work anymore without failing to solve most of the scenarios due to timeouts.
I run it using docker on Windows 11. Thank you for your help!

Hi Thomas,
Sorry for the late reply and merry Christmas to you! It is normal that some algorithms result in many timeouts as they are not good enough to find a solution within given time. And evaluation_function of A* Search is based on the Best-First Search algorithm. Hope this helps.

Best regards,
Ling