Skip to content

Commit

Permalink
more paco setups
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasWeise committed Jul 20, 2020
1 parent 4f9cbfe commit b6bb8c3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,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.64` is the current version of `aitoa-code`.
Here, `0.8.65` 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.64</version>
<version>0.8.65</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.64</version>
<version>0.8.65</version>
<packaging>jar</packaging>
<name>aitoa-code</name>
<description>Example Source Codes from the Book "Introduction to Optimization Algorithms"</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ public enum EJSSPExperimentStageACO implements
JSSPACOIndividual>>> list = new ArrayList<>();

for (final int mu : new int[] { 1 }) {
for (final int lambda : new int[] { 10, 100, 1000 }) {
for (final int K : new int[] { 5, 10, 20 }) {
for (final int lambda : new int[] { 10, 100, 1000,
10000 }) {
for (final int K : new int[] { 2, 3, 4, 5, 10, 20,
40 }) {
for (final double beta : new double[] { 2d, 5d }) {
for (final double q0 : new double[] { 0.9d }) {
for (final double tauMax : new double[] { 1d }) {
Expand Down

0 comments on commit b6bb8c3

Please sign in to comment.