-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Description
Currently I get the following error trying to use both LAPACK and BLAS in my project:
The relevant piece from my module-info
:
requires lapack;
requires arpack.combined.all;
requires blas;
(ARPACK is necessary for the intW type needed e.g. for dpotf2)
my pom.xml
:
<dependency>
<groupId>dev.ludovic.netlib</groupId>
<artifactId>lapack</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>dev.ludovic.netlib</groupId>
<artifactId>arpack</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>dev.ludovic.netlib</groupId>
<artifactId>blas</artifactId>
<version>2.2.1</version>
</dependency>
I think this can be fixed by adding module support, which would also remove the warning coming with the packages at the moment:
Metadata
Metadata
Assignees
Labels
No labels