Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
1k views

Where can I find information on the D* or D* Lite pathfinding algorithm?

There are links to some papers on D* here, but they're a bit too mathematical for me. Is there any information on D*/D* Lite more geared towards beginners?
7
votes
1answer
224 views

The D*-Lite algorithm

I'm trying to implement the D*-Lite pathfinding algorithm, as described in the 2002 article by Koenig and Likhachev, for Boost::Graph. I think I've gotten a decent grasp on the basic ideas and theory ...
5
votes
1answer
1k views

On Path Finding: a detailed description for a layman of the D* algorithm

The large network (of small world graph type) I wish to deal with is dynamic in nature, new nodes are added and subtracted frequently. Presumably using D* over A* would be a better way to detect paths ...
4
votes
2answers
268 views

Approaches to a Dynamic Pathfinding Algorithm

My A* implementation works well for my static environment. If I would now like to work with a dynamic environment, i.e. certain costs between my nodes change while we are traversing from the start to ...
3
votes
3answers
590 views

Pathfinding algorithm creating loops

I've implemented the D*-Lite algorithm (here's a description, it's an algorithm for doing pathfinding when edge costs change over time), but I'm having problems with doing the edge cost updates. It ...
3
votes
2answers
210 views

Pathfinding with Dynamic Obstacles

I am implementing a simulation that requires me to have some pathfinding. A* works fine for me when my environment does not change. LPA* and D* Lite work fine for me when I encounter a static obstacle ...