Skip to main content

ariadnetor_algorithms/
lib.rs

1//! Tensor-network algorithms. Currently provides DMRG and the Krylov
2//! solvers it relies on.
3//!
4//! Builds on [`ariadnetor_tensor`] for tensor operations and [`ariadnetor_mps`] for
5//! MPS / MPO data structures.
6
7#![deny(missing_docs)]
8
9pub mod dmrg;
10pub mod krylov;
11
12pub(crate) mod numeric;