god-graph 0.6.0-alpha

A graph-based LLM white-box optimization toolbox: topology validation, Lie group orthogonalization, tensor ring compression
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 算法模块
//!
//! 包含各种图算法实现

pub mod centrality;
pub mod community;
pub mod flow;
pub mod matching;
pub mod mst;
pub mod properties;
pub mod shortest_path;
pub mod traversal;

/// 并行算法模块(需要 `parallel` 特性)
#[cfg(feature = "parallel")]
pub mod parallel;