© 2000 Todd Neller.  A.I.M.A. text figures © 1995 Prentice Hall.  Used by permission.
Iterative Deepening A*
•A series of depth-first searches bounded by iteratively increasing f limit.
•If f is monotonic (f(child) >= f(parent)), then IDA* expands nodes in best-first order.
•IDA* space requirement – O(bd)
•IDA* node generation- O(1)