mdmath_core 0.4.0

Core multidimensional mathematics library with fundamental types, traits, and operations
Documentation
1
2
3
4
5
6
7
8
9
//! This module contains tests for the `mdmath_core` module, specifically focusing on vector operations and arithmetic.
// #[ allow( unused_imports ) ]
use super::*;

mod assumptions;
#[ cfg( feature = "arithmetics" ) ]
mod arithmetics;
mod plain_test;
mod vector_test;