Reputation: 321
I am trying to implement the D* Lite and LPA* algorithms (both proposed by Sven Koenig), and I am having difficulty in understanding the concept of the list of predecessors and successors contained by each node. I tried looking for answers at various sources, but I couldn't find a definitive one.
Could anyone help me out with it?
Thank you.
Upvotes: 2
Views: 1444
Reputation: 42470
On a directed graph:
On an undirected graph (common for simple examples), they will be the same.
On the (undirected) 4-connected lattice below
Upvotes: 3