hypergraphx 0.0.5

A hypergraph library for Rust, based on the Python library of the same name.
Documentation
1
2
3
4
5
6
7
8
9
//! Special kinds of graphs, yes. I think trees and DAGs deserve their own modules.
//! But also complete graphs and tournaments, hereditary hypergraphs, bipartite graphs,
//! etc.
//!

pub mod complete;
pub mod cycle_free;
pub mod cycles;
pub mod partite;