@@ -36,6 +36,8 @@ macro_rules! impl_exact {
36
36
test_exact( a, b)
37
37
}
38
38
39
+ /* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
40
+
39
41
#[test]
40
42
fn [<least_squares_ $scalar _exact_ac_bf>]() {
41
43
let a: Array2<f64> = random((3, 3));
@@ -50,6 +52,8 @@ macro_rules! impl_exact {
50
52
test_exact(a, b)
51
53
}
52
54
55
+ */
56
+
53
57
#[ test]
54
58
fn [ <least_squares_ $scalar _exact_af_bf>] ( ) {
55
59
let a: Array2 <f64 > = random( ( 3 , 3 ) . f( ) ) ;
@@ -104,6 +108,8 @@ macro_rules! impl_overdetermined {
104
108
test_overdetermined( a, b)
105
109
}
106
110
111
+ /* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
112
+
107
113
#[test]
108
114
fn [<least_squares_ $scalar _overdetermined_af_bc>]() {
109
115
let a: Array2<f64> = random((4, 3).f());
@@ -118,6 +124,8 @@ macro_rules! impl_overdetermined {
118
124
test_overdetermined(a, b)
119
125
}
120
126
127
+ */
128
+
121
129
#[ test]
122
130
fn [ <least_squares_ $scalar _overdetermined_af_bf>] ( ) {
123
131
let a: Array2 <f64 > = random( ( 4 , 3 ) . f( ) ) ;
@@ -159,6 +167,8 @@ macro_rules! impl_underdetermined {
159
167
test_underdetermined( a, b)
160
168
}
161
169
170
+ /* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
171
+
162
172
#[test]
163
173
fn [<least_squares_ $scalar _underdetermined_af_bc>]() {
164
174
let a: Array2<f64> = random((3, 4).f());
@@ -173,6 +183,8 @@ macro_rules! impl_underdetermined {
173
183
test_underdetermined(a, b)
174
184
}
175
185
186
+ */
187
+
176
188
#[ test]
177
189
fn [ <least_squares_ $scalar _underdetermined_af_bf>] ( ) {
178
190
let a: Array2 <f64 > = random( ( 3 , 4 ) . f( ) ) ;
0 commit comments