@@ -36,6 +36,8 @@ macro_rules! impl_exact {
3636 test_exact( a, b)
3737 }
3838
39+ /* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
40+
3941 #[test]
4042 fn [<least_squares_ $scalar _exact_ac_bf>]() {
4143 let a: Array2<f64> = random((3, 3));
@@ -50,6 +52,8 @@ macro_rules! impl_exact {
5052 test_exact(a, b)
5153 }
5254
55+ */
56+
5357 #[ test]
5458 fn [ <least_squares_ $scalar _exact_af_bf>] ( ) {
5559 let a: Array2 <f64 > = random( ( 3 , 3 ) . f( ) ) ;
@@ -104,6 +108,8 @@ macro_rules! impl_overdetermined {
104108 test_overdetermined( a, b)
105109 }
106110
111+ /* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
112+
107113 #[test]
108114 fn [<least_squares_ $scalar _overdetermined_af_bc>]() {
109115 let a: Array2<f64> = random((4, 3).f());
@@ -118,6 +124,8 @@ macro_rules! impl_overdetermined {
118124 test_overdetermined(a, b)
119125 }
120126
127+ */
128+
121129 #[ test]
122130 fn [ <least_squares_ $scalar _overdetermined_af_bf>] ( ) {
123131 let a: Array2 <f64 > = random( ( 4 , 3 ) . f( ) ) ;
@@ -159,6 +167,8 @@ macro_rules! impl_underdetermined {
159167 test_underdetermined( a, b)
160168 }
161169
170+ /* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
171+
162172 #[test]
163173 fn [<least_squares_ $scalar _underdetermined_af_bc>]() {
164174 let a: Array2<f64> = random((3, 4).f());
@@ -173,6 +183,8 @@ macro_rules! impl_underdetermined {
173183 test_underdetermined(a, b)
174184 }
175185
186+ */
187+
176188 #[ test]
177189 fn [ <least_squares_ $scalar _underdetermined_af_bf>] ( ) {
178190 let a: Array2 <f64 > = random( ( 3 , 4 ) . f( ) ) ;
0 commit comments