Skip to content

Commit

Permalink
version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lpapailiou committed Jan 26, 2021
1 parent dfb41ff commit 4e9a8c3
Show file tree
Hide file tree
Showing 16 changed files with 65 additions and 5 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
583e2e35ffb43e81149307db7ab2944f
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cf39f4aea2480d6dbaf93f654db79fdce5047ed7
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a78e47a97a3027081e557dea1918078a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
217cd2853244527e5737941285813c9c0266d98a
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0e026d59d71b50b8c40013ac8c3f9af1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5bcfa0bd6adadc8ccf317a7a1d9acaa01f635631
51 changes: 51 additions & 0 deletions neuralnetwork/neural-network-repo/2.0/neural-network-repo-2.0.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>neuralnetwork</groupId>
<artifactId>neural-network-repo</artifactId>
<version>2.0</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>20.1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.repo>file:///C:/Users/Lena Papailiou/git/neuralnetwork/</github.repo>
</properties>

<distributionManagement>
<repository>
<id>neural-network-repo</id>
<url>${github.repo}</url>
</repository>
</distributionManagement>


</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3f91edf0576b04ced30b72483f0d4257
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4963ac27d90f375ecdb0acd75b6f0ed6b223ad42
5 changes: 3 additions & 2 deletions neuralnetwork/neural-network-repo/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>neuralnetwork</groupId>
<artifactId>neural-network-repo</artifactId>
<versioning>
<release>1.15</release>
<release>2.0</release>
<versions>
<version>1.2</version>
<version>1.3</version>
Expand All @@ -19,7 +19,8 @@
<version>1.13</version>
<version>1.14</version>
<version>1.15</version>
<version>2.0</version>
</versions>
<lastUpdated>20210126201635</lastUpdated>
<lastUpdated>20210126210850</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion neuralnetwork/neural-network-repo/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
431685be8350b5eef99f8d94caae586e
115c72b456cb936252df425e264ca9c1
2 changes: 1 addition & 1 deletion neuralnetwork/neural-network-repo/maven-metadata.xml.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c347756204a22da8e36d5d278b388ed2ba55c234
8c2b61b6cca06a8e179062ea92f67847e7545497
2 changes: 1 addition & 1 deletion src/main/java/geneticalgorithm/GeneticAlgorithmBatch.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public GeneticAlgorithmBatch(@NotNull Class<T> templateGeneticAlgorithmObject, @
try {
geneticAlgorithmObjectConstructor = templateGeneticAlgorithmObject.getDeclaredConstructor(NeuralNetwork.class);
} catch (NoSuchMethodException e) {
throw new IllegalArgumentException("Wrong generic class given. Must have constructor with argument NeuralNetwork!", e);
throw new IllegalArgumentException("Wrong class definition. Must have constructor with single argument NeuralNetwork!", e);
}
this.seedNeuralNetwork = seedNeuralNetwork;
this.populationSize = populationSize;
Expand Down

0 comments on commit 4e9a8c3

Please sign in to comment.