Skip to content

Commit

Permalink
Prepare to build v55.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
apete committed Nov 17, 2024
1 parent 77e2df6 commit 135198c
Show file tree
Hide file tree
Showing 43 changed files with 2,324 additions and 2,410 deletions.
2 changes: 1 addition & 1 deletion .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ org.eclipse.jdt.core.formatter.alignment_for_compact_if=16
org.eclipse.jdt.core.formatter.alignment_for_compact_loops=16
org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80
org.eclipse.jdt.core.formatter.alignment_for_conditional_expression_chain=0
org.eclipse.jdt.core.formatter.alignment_for_enum_constants=49
org.eclipse.jdt.core.formatter.alignment_for_enum_constants=48
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_for_loop_header=0
org.eclipse.jdt.core.formatter.alignment_for_expressions_in_switch_case_with_arrow=0
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Added / Changed / Deprecated / Fixed / Removed / Security

> Corresponds to changes in the `develop` branch since the last release
## [55.0.1] – 2024-11-17

### Added

#### org.ojalgo.concurrent
Expand Down
1,651 changes: 780 additions & 871 deletions jdeps.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ojalgo</groupId>
<artifactId>ojalgo</artifactId>
<version>55.0.1-SNAPSHOT</version>
<version>55.0.1</version>
<name>ojAlgo</name>
<description>oj! Algorithms - ojAlgo - is Open Source Java code that has to do with mathematics, linear algebra and optimisation.</description>
<packaging>jar</packaging>
Expand Down
28 changes: 14 additions & 14 deletions src/main/java/org/ojalgo/ann/FileFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ static ArtificialNeuralNetwork read(final PhysicalStore.Factory<Double, ?> facto
int version = input.readInt();

switch (version) {
case Version1.ID:
return Version1.read(factory, input);
case Version2.ID:
return Version2.read(factory, input);
default:
throw new IOException("Unsupported version!");
case Version1.ID:
return Version1.read(factory, input);
case Version2.ID:
return Version2.read(factory, input);
default:
throw new IOException("Unsupported version!");
}
}

Expand All @@ -209,14 +209,14 @@ static void write(final ArtificialNeuralNetwork network, final int version, fina
output.writeInt(version);

switch (version) {
case Version1.ID:
Version1.write(network, output);
break;
case Version2.ID:
Version2.write(network, output);
break;
default:
throw new IOException("Unsupported version!");
case Version1.ID:
Version1.write(network, output);
break;
case Version2.ID:
Version2.write(network, output);
break;
default:
throw new IOException("Unsupported version!");
}
}

Expand Down
Loading

0 comments on commit 135198c

Please sign in to comment.