Module topology

Module topology 

Source
Expand description

Graph topology types.

Re-exports§

pub use small_graphs::available_graphs;
pub use small_graphs::smallgraph;

Modules§

small_graphs
Small graph collection for testing and benchmarking.

Structs§

BipartiteGraph
Bipartite graph with explicit left/right partitions.
DirectedGraph
A simple unweighted directed graph.
KingsSubgraph
A King’s Subgraph — an unweighted unit disk graph on a square lattice.
PlanarGraph
Planar graph — validated wrapper around SimpleGraph.
SimpleGraph
A simple unweighted undirected graph.
TriangularSubgraph
A Triangular Subgraph — an unweighted unit disk graph on a triangular lattice.
UnitDiskGraph
A unit disk graph with vertices at 2D positions.

Traits§

Graph
Trait for graph types, following Julia’s Graphs.jl AbstractGraph pattern.
GraphCast
Trait for casting a graph to a supertype in the graph hierarchy.