rust_physics_engine 0.2.0

A zero-dependency Rust library for physics, mathematics and engineering computation — 6,365 public functions across 71 modules
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Graphs: representation and structure, shortest paths, network flow,
//! matchings, spectral graph theory, colouring, and drawing.

pub mod core;
pub mod coloring;
pub mod flow;
pub mod layout;
pub mod matching;
pub mod paths;
pub mod spectral;

pub use core::Graph;