<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>Dijkstar</name>
<shortdesc>Dijkstra/A* path finding functions</shortdesc>
<description>Dijkstar
++++++++

Dijkstar is an implementation of Dijkstra's single-source shortest-paths
algorithm. If a destination node is given, the algorithm halts when that node
is reached; otherwise it continues until paths from the source node to all
other nodes are found.

Accepts an optional cost (or "weight") function that will be called on every
iteration.

Also accepts an optional heuristic function that is used to push the algorithm
toward a destination instead of fanning out in every direction. Using such a
heuristic function converts Dijkstra to A* (and this is where the name
"Dijkstar" comes from).

Performance is decent on a graph with 100,000+ nodes. Runs in around .5
seconds on average .

See the source for the required graph structure:

https://guest:guest@svn.byCycle.org/spinoffs/Dijkstar

Latest development version:

https://guest:guest@svn.byCycle.org/spinoffs/Dijkstar#egg=Dijkstar-dev</description>
<homepage rdf:resource="http://wyattbaldwin.com/" />
<maintainer><foaf:Person><foaf:name>Wyatt L Baldwin, byCycle.org</foaf:name>
<foaf:mbox_sha1sum>bcb60af3d810fb93b06beecf5f01619e102e3626</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>1.0</revision></Version></release>
</Project></rdf:RDF>