Skip to content

Commit 5ad4343

Browse files
committed
Enable tests for C/F mixed cases #234
1 parent b742f6f commit 5ad4343

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

ndarray-linalg/tests/least_squares_nrhs.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ macro_rules! impl_exact {
3737
test_exact(a, b)
3838
}
3939

40-
/* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
41-
4240
#[test]
4341
fn [<least_squares_ $scalar _exact_ac_bf>]() {
4442
let a: Array2<$scalar> = random((3, 3));
@@ -53,8 +51,6 @@ macro_rules! impl_exact {
5351
test_exact(a, b)
5452
}
5553

56-
*/
57-
5854
#[test]
5955
fn [<least_squares_ $scalar _exact_af_bf>]() {
6056
let a: Array2<$scalar> = random((3, 3).f());
@@ -109,8 +105,6 @@ macro_rules! impl_overdetermined {
109105
test_overdetermined(a, b)
110106
}
111107

112-
/* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
113-
114108
#[test]
115109
fn [<least_squares_ $scalar _overdetermined_af_bc>]() {
116110
let a: Array2<$scalar> = random((4, 3).f());
@@ -125,8 +119,6 @@ macro_rules! impl_overdetermined {
125119
test_overdetermined(a, b)
126120
}
127121

128-
*/
129-
130122
#[test]
131123
fn [<least_squares_ $scalar _overdetermined_af_bf>]() {
132124
let a: Array2<$scalar> = random((4, 3).f());
@@ -168,8 +160,6 @@ macro_rules! impl_underdetermined {
168160
test_underdetermined(a, b)
169161
}
170162

171-
/* Unsupported currently. See https://github.com/rust-ndarray/ndarray-linalg/issues/234
172-
173163
#[test]
174164
fn [<least_squares_ $scalar _underdetermined_af_bc>]() {
175165
let a: Array2<$scalar> = random((3, 4).f());
@@ -184,8 +174,6 @@ macro_rules! impl_underdetermined {
184174
test_underdetermined(a, b)
185175
}
186176

187-
*/
188-
189177
#[test]
190178
fn [<least_squares_ $scalar _underdetermined_af_bf>]() {
191179
let a: Array2<$scalar> = random((3, 4).f());

0 commit comments

Comments
 (0)