graaf 0.84.2

Work with directed graphs.
Documentation

Graaf   Crates.io Build status API reference Coverage Status

Rust-powered directed graphs.

Table of Contents

Installation

Add the following to your Cargo.toml:

[dependencies]
graaf = "0.84.2"

Digraph Types

Graaf provides representations of directed graphs. These types eagerly implement digraph operations and algorithms.

Creating Digraphs

The gen module provides digraph generators. Each digraph representation can be constructed with the operations in the op module.

  • Biclique generates a complete bipartite digraph.
  • Circuit generates a circuit digraph.
  • Complete generates a complete digraph.
  • Cycle generates a bidirectional circuit.
  • Empty generates a digraph with no arcs.
  • ErdosRenyi generates a random digraph.
  • Path generates a path digraph.
  • RandomTournament generates a random tournament.
  • Star generates a star digraph.

Operations

The op module provides digraph operation traits. The digraph types implement these traits. One can implement these traits for custom digraph types. Operations form the foundation for algorithms.

Algorithms

The algo module provides digraph algorithms.

Bellman-Ford-Moore

The Bellman-Ford-Moore algorithm finds the shortest paths in an arc-weighted digraph with negative weights.

Breadth-First Search (BFS)

A breadth-first search explores the vertices of an unweighted digraph in order of their distance from a source.

Depth-First Search (DFS)

A depth-first search explores the vertices of an unweighted digraph in order of their depth from a source.

  • dfs::Dfs iterates over the vertices.
  • dfs_dist::Dfs iterates over the vertices and their distance from the source.

Dijkstra

Dijkstra's algorithm finds the shortest paths in an arc-weighted digraph.

Floyd-Warshall

The Floyd-Warshall algorithm finds the shortest paths between all pairs of vertices in an arc-weighted digraph.

Tarjan

Tarjan's algorithm finds the strongly connected components in a digraph.

Predecessor Tree

A PredecessorTree is the result of a breadth-first search.

These functions produce a predecessor tree.

Distance Matrix

A DistanceMatrix contains the shortest distances between all pairs of vertices in a digraph.

Changelog

See CHANGELOG.md for a list of changes.

License

Licensed under Apache License, Version 2.0 or MIT license at your option.

Contact

Feel free to reach out with questions or suggestions.

Links