Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 712 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 712 Bytes

SpryGraph

.NET graph lib for fast path finding (in C#)

Currently has:

  • Fast A*
  • Fast Dijkstra

Development state: I use this library in production software.

For a brief tutorial see http://jacklangman.com/2013/07/15/faster-path-finding-in-csharp/

==========

Some quick performance stats on random graphs:

             |        |           |       Query Time       |
Vertex Count | Degree | Algorithm | SpryGraph | QuickGraph |
------------------------------------------------------------
200,000        2        Dijkstra    145.9ms     903.3ms
1,000,000      4        A*          513.5ms     9625.7ms