sim-lib-numbers-tensor 0.1.0

SIM workspace package for sim lib numbers tensor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Implementation of the tensor domain: its value class citizen, domain
//! registration, constructor operations, and the `Tensor` value type.

mod citizen;
mod domain;
mod function;
mod value;

pub use citizen::tensor_value_class_symbol;
pub use domain::{TensorNumbersLib, number_domain};
pub use value::{
    Tensor, build_scalar_tensor_value, build_tensor_value, flatten_tensor_scalar_cells,
    tensor_dtype, tensor_value_ref,
};