File tree 3 files changed +9
-0
lines changed
arpack/src/test/java/dev/ludovic/netlib/arpack
blas/src/test/java/dev/ludovic/netlib/blas
lapack/src/test/java/dev/ludovic/netlib/lapack
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ public class ARPACKTest {
46
46
47
47
private static Stream <Arguments > ARPACKImplementations () {
48
48
Stream instances = Stream .of (
49
+ Arguments .of (ARPACK .getInstance ()),
50
+ Arguments .of (NativeARPACK .getInstance ()),
51
+ Arguments .of (JavaARPACK .getInstance ()),
49
52
Arguments .of (F2jARPACK .getInstance ()),
50
53
Arguments .of (JNIARPACK .getInstance ())
51
54
);
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ public class BLASTest {
44
44
45
45
private static Stream <Arguments > BLASImplementations () throws Throwable {
46
46
Stream instances = Stream .of (
47
+ Arguments .of (BLAS .getInstance ()),
48
+ Arguments .of (NativeBLAS .getInstance ()),
49
+ Arguments .of (JavaBLAS .getInstance ()),
47
50
Arguments .of (F2jBLAS .getInstance ()),
48
51
Arguments .of (JNIBLAS .getInstance ())
49
52
);
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ public class LAPACKTest {
44
44
45
45
private static Stream <Arguments > LAPACKImplementations () {
46
46
Stream instances = Stream .of (
47
+ Arguments .of (LAPACK .getInstance ()),
48
+ Arguments .of (NativeLAPACK .getInstance ()),
49
+ Arguments .of (JavaLAPACK .getInstance ()),
47
50
Arguments .of (F2jLAPACK .getInstance ()),
48
51
Arguments .of (JNILAPACK .getInstance ())
49
52
);
You can’t perform that action at this time.
0 commit comments