diff --git a/fixed_wide_vectors/src/tests/fixed_wide.rs b/fixed_wide_vectors/src/tests/fixed_wide.rs index 99a72d6..9eb6bec 100644 --- a/fixed_wide_vectors/src/tests/fixed_wide.rs +++ b/fixed_wide_vectors/src/tests/fixed_wide.rs @@ -35,14 +35,6 @@ fn wide_vec3_length_squared(){ assert_eq!(v3,Planar64Wide3::from(3i128.pow(8)*3)); } -#[test] -fn wide_vec_of_vec_dot(){ - let vv=Vector3::>::from_value_2d(Planar64::from(3)); - // do the dot product of the inner vectors multiplied component wise - // this lowers the rank of the data structure and is kind of a weird operation lol - let vv_dot=vv.wide_dot_1_1(vv); - assert_eq!(vv_dot,Vector2::from_value(Planar64Wide1::from(3i128.pow(3)))); -} #[test] fn wide_matrix_dot(){ let m=Matrix3::>::from_value_2d(Planar64::from(3));