Module solver

Module solver 

Source
Expand description

Sublinear-time solver algorithms for asymmetric diagonally dominant systems.

This module implements the core solver algorithms including Neumann series, forward/backward push methods, and hybrid random-walk approaches.

Re-exports§

pub use neumann::NeumannSolver;

Modules§

neumann
Neumann series solver for asymmetric diagonally dominant systems.
utils
Utility functions for solver implementations.

Structs§

BackwardPushSolver
ForwardPushSolver
HybridSolver
PartialSolution
Partial solution for streaming applications.
SolverOptions
Configuration options for solver algorithms.
SolverResult
Result of a solver computation.

Enums§

StepResult
Result of a single iteration step.

Traits§

SolverAlgorithm
Core trait for all solver algorithms.
SolverState
Trait for solver state management.