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
//! 图核心模块
//!
//! 提供 Graph 数据结构和核心操作 trait

pub mod builders;
pub mod graph_impl;
pub mod iterators;
pub mod traits;

pub use builders::GraphBuilder;
pub use graph_impl::Graph;
pub use traits::{Direction, GraphBase, GraphOps, GraphQuery};