acme-tensor 0.3.1

A comprehensive tensor library for Rust with support for automatic-differentiation.
Documentation
/*
    Appellation: linalg <mod>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Linear Algebra
//!
//!
pub use self::{specs::*, uplo::UPLO};

pub(crate) mod specs;
pub(crate) mod uplo;

pub mod solve;
pub mod tri;

pub(crate) mod prelude {
    pub use super::specs::{Inverse, Matmul};
    pub use super::uplo::UPLO;
}

#[cfg(test)]
mod tests {}