Skip to content

Commit

Permalink
added some more experimental setups
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Apr 7, 2020
1 parent f5f0398 commit 9930af0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ First, you need to add the following repository, which is a repository that can
```

Than you can add the dependency on our `aitoa-code` repository into your `dependencies` section.
Here, `0.8.49` is the current version of `aitoa-code`.
Here, `0.8.50` is the current version of `aitoa-code`.
Notice that you may have more dependencies in your `dependencies` section, say on `junit`, but here I just put the one for `aitoa-code` as example.

```xml
<dependencies>
<dependency>
<groupId>com.github.thomasWeise</groupId>
<artifactId>aitoa-code</artifactId>
<version>0.8.49</version>
<version>0.8.50</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>aitoa</groupId>
<artifactId>aitoa-code</artifactId>
<version>0.8.49</version>
<version>0.8.50</version>
<packaging>jar</packaging>
<name>aitoa-code</name>
<description>Example Source Codes from the Book "Introduction to Optimization Algorithms"</description>
Expand Down
7 changes: 5 additions & 2 deletions src/main/java/aitoa/examples/jssp/EJSSPExperimentStage.java
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,11 @@ public void configureBuilderForProblem(
EJSSPExperimentStage._eas(
new int[] { 128, 256, 512, 1024, 2048, 4096, 8192,
16384, 16384, 32768, 65536 },
new double[] { 0 }, false), //
EJSSPExperimentStage._eas(null, null, true));
new double[] { 0, 0.05, 0.3, 0.98 }, false),
EJSSPExperimentStage._eas(
new int[] { 4, 8, 16, 32, 64, 128, 256, 512, 1024,
2048, 4096, 8192, 16384, 16384, 32768, 65536 },
new double[] { 0.05, 0.3 }, true));
}

/**
Expand Down

0 comments on commit 9930af0

Please sign in to comment.