-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
Description
In the project that can't be shared publicly rust-analyzer started hanging up all worker threads within find_path_module
/ calculate_best_path
. I assume that it is not actually hanging (as the recursion does look like having appropriate exit conditions everywhere) but instead running into a search tree so wide that with a max depth of 15 (
const MAX_PATH_LEN: usize = 15; |
roife