test doesn't compile yet

This commit is contained in:
Quaternions 2024-08-30 13:25:27 -07:00
parent 88acec5659
commit e6a28fbb70

View File

@ -62,6 +62,7 @@ fn wide_vec_of_vec_dot(){
fn wide_matrix_dot(){
let m=Matrix3::<Vector3<_>>::from_value_2d(Planar64::from(3));
//normal matrix product
let m_dot=m.wide_dot(m);
assert_eq!(m_dot,Matrix3::<Vector3<_>>::from_value_2d(Planar64Wide1::from(3i128.pow(2))));
todo!()
//let m_dot=m.wide_dot(m);
//assert_eq!(m_dot,Matrix3::<Vector3<_>>::from_value_2d(Planar64Wide1::from(3i128.pow(2))));
}