uni-algo 2.0.3

Graph algorithms for Uni - PageRank, Louvain, shortest paths, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2026 Dragonscale Team

pub mod algo;
pub mod projection_input;

pub use algo::AlgorithmRegistry;
pub use algo::procedures::{
    AlgoContext, AlgoProcedure, AlgoResultRow, ProcedureSignature, ValueType,
};
pub use algo::projection::{GraphProjection, ProjectionBuilder, ProjectionConfig};
pub use projection_input::{GraphRefParseError, ProjectionInput, parse_graph_ref};