File tree Expand file tree Collapse 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 Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ public class ARPACKTest {
4646
4747 private static Stream <Arguments > ARPACKImplementations () {
4848 Stream instances = Stream .of (
49+ Arguments .of (ARPACK .getInstance ()),
50+ Arguments .of (NativeARPACK .getInstance ()),
51+ Arguments .of (JavaARPACK .getInstance ()),
4952 Arguments .of (F2jARPACK .getInstance ()),
5053 Arguments .of (JNIARPACK .getInstance ())
5154 );
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ public class BLASTest {
4444
4545 private static Stream <Arguments > BLASImplementations () throws Throwable {
4646 Stream instances = Stream .of (
47+ Arguments .of (BLAS .getInstance ()),
48+ Arguments .of (NativeBLAS .getInstance ()),
49+ Arguments .of (JavaBLAS .getInstance ()),
4750 Arguments .of (F2jBLAS .getInstance ()),
4851 Arguments .of (JNIBLAS .getInstance ())
4952 );
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ public class LAPACKTest {
4444
4545 private static Stream <Arguments > LAPACKImplementations () {
4646 Stream instances = Stream .of (
47+ Arguments .of (LAPACK .getInstance ()),
48+ Arguments .of (NativeLAPACK .getInstance ()),
49+ Arguments .of (JavaLAPACK .getInstance ()),
4750 Arguments .of (F2jLAPACK .getInstance ()),
4851 Arguments .of (JNILAPACK .getInstance ())
4952 );
You can’t perform that action at this time.
0 commit comments