ariadnetor-algorithms 0.0.2

Tensor-network algorithms built on ariadnetor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tensor-network algorithms. Currently provides DMRG and the Krylov
//! solvers it relies on.
//!
//! Builds on [`ariadnetor_tensor`] for tensor operations and [`ariadnetor_mps`] for
//! MPS / MPO data structures.

#![deny(missing_docs)]

pub mod dmrg;
pub mod krylov;

pub(crate) mod numeric;