In a iterative deepening search (IDS, why is it needed to regenerate the l levels of a tree when using depth limited searching with L+1 limits?
..my guess is because unlike a queue with n-1 limits, if there was a tree with l+1 limits, then the limit is l+1 because it may search at the root of a tree, and if it fails, it will increase the depth by one and search onward.
I'm not sure if I'm on the right track of thinking for this one.