Skip to content

Commit f3e0aaa

Browse files
authored
feat(matrix): Introduce methods for swapping specified rows and columns (#108)
These changes enhances the `Matrix` class by focusing on refactoring code for better maintainability, and introducing efficient methods for swapping specified rows and columns within the matrix. Signed-off-by: Ryuu Mitsuki <[email protected]>
2 parents 9c87284 + ebd80dd commit f3e0aaa

File tree

2 files changed

+257
-33
lines changed

2 files changed

+257
-33
lines changed

pom.xml

+11-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@
104104
<target>${targetJdk}</target>
105105
<testSource>${sourceJdk}</testSource>
106106
<testTarget>${targetJdk}</testTarget>
107-
<compilerVersion>${jdkVersion}</compilerVersion>
108107
<showDeprecation>true</showDeprecation>
109108
<fork>true</fork>
110109

@@ -167,7 +166,7 @@
167166
<artifactId>maven-javadoc-plugin</artifactId>
168167
<version>3.6.3</version>
169168
<configuration>
170-
<windowtitle>${project.name} API</windowtitle>
169+
<windowtitle>${project.name} ${project.version} API</windowtitle>
171170
<destDir>${paths.docsOutputDir}</destDir>
172171
<reportOutputDirectory>${paths.docsOutputDir}</reportOutputDirectory>
173172
<show>protected</show>
@@ -214,6 +213,16 @@
214213
<placement>a</placement>
215214
<head>Warning:</head>
216215
</tag>
216+
<tag>
217+
<name>apiNote</name>
218+
<placement>ptcmf</placement>
219+
<head>API Note:</head>
220+
</tag>
221+
<tag>
222+
<name>implNote</name>
223+
<placement>ptcmf</placement>
224+
<head>Implementation Note:</head>
225+
</tag>
217226
<tag>
218227
<name>author</name>
219228
</tag>

0 commit comments

Comments
 (0)