igraph 0.1.1

A graph representation data structure with a built in index on keys.
Documentation
  • Coverage
  • 84.21%
    16 out of 19 items documented15 out of 18 items with examples
  • Size
  • Source code size: 26.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 629.49 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • mocsy/igraph
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mocsy kvnvelasco

A map like data structure based on Vec to represent a Graph with directed edges.

The goal is to be able to build a structure looking more like this:

     |
  \  |  /
 \ \ | / /
__\_\|/_/__
  / /|\ \
 / / | \ \
  /  |  \
     |

Instead of a tree like this:

  ____|____
__|__   __|__
|   |   |   |

Further goals: [x] store and find node [x] store edges [] graph traversal along the edges [] generator function to exhaustively discover all paths from one node to another [] possible weights on edges