Skip to content

Commit 44a89e1

Browse files
committed
Add matrix functions.
This adds support for basic matrix math. In general, doing this natively should be much faster, as the underlying data remains a native java array of doubles, so no wrapping and unwrapping needs to occur for the various math operations. This library may be expanded in the future to cover more linear algebra scenarios, but the basic functionality is in place now.
1 parent 520a2bb commit 44a89e1

File tree

9 files changed

+2419
-15
lines changed

9 files changed

+2419
-15
lines changed

nb-configuration.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInit>WRAP_ALWAYS</org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInit>
3838
<org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInitItems>WRAP_ALWAYS</org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapArrayInitItems>
3939
<org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapObjects>WRAP_ALWAYS</org-netbeans-modules-editor-indent.text.plain.CodeStyle.project.wrapObjects>
40-
<netbeans.hint.jdkPlatform>JDK_17</netbeans.hint.jdkPlatform>
40+
<netbeans.hint.jdkPlatform>JDK_21</netbeans.hint.jdkPlatform>
41+
<netbeans.compile.on.save>none</netbeans.compile.on.save>
4142
</properties>
4243
</project-shared-configuration>

pom.xml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@
334334
<dependency>
335335
<groupId>org.mockito</groupId>
336336
<artifactId>mockito-core</artifactId>
337-
<version>5.11.0</version>
337+
<version>5.19.0</version>
338338
<scope>test</scope>
339339
</dependency>
340340
<!--<dependency>
@@ -343,19 +343,6 @@
343343
<version>2.8.1</version>
344344
<scope>test</scope>
345345
</dependency>-->
346-
<!-- This is neat and all, but too much trouble.
347-
<dependency>
348-
<groupId>org.powermock</groupId>
349-
<artifactId>powermock-module-junit4</artifactId>
350-
<version>1.5.2</version>
351-
<scope>test</scope>
352-
</dependency>
353-
<dependency>
354-
<groupId>org.powermock</groupId>
355-
<artifactId>powermock-api-mockito</artifactId>
356-
<version>1.5.2</version>
357-
<scope>test</scope>
358-
</dependency>-->
359346
<dependency>
360347
<groupId>commons-codec</groupId>
361348
<artifactId>commons-codec</artifactId>

0 commit comments

Comments
 (0)