How do we know the optimal solution cost before finishing the search?
The textbook says A* expands all nodes with f(n) less than C * but how do we know C* before actually finishing the search? Maybe I'm not understanding the concept of the optimal solution path
I get the concept in Does A* need to know the optimal solution cost while utilizing an admissible heuristic?
but then how do we do the concept of pruning? I feel like we should be able to write off some nodes so we don't have to keep track of them in case they become the lowest cost.