From b6bb8c301eddab31e87599093851ad02982316d3 Mon Sep 17 00:00:00 2001 From: Thomas Weise Date: Tue, 21 Jul 2020 04:45:51 +0800 Subject: [PATCH] more paco setups --- README.md | 4 ++-- pom.xml | 2 +- .../java/aitoa/examples/jssp/EJSSPExperimentStageACO.java | 6 ++++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 002bf1b..9af0117 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ 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 @@ -53,7 +53,7 @@ Notice that you may have more dependencies in your `dependencies` section, say o com.github.thomasWeise aitoa-code - 0.8.64 + 0.8.65 ``` diff --git a/pom.xml b/pom.xml index 010072e..bbb8d1b 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ aitoa aitoa-code - 0.8.64 + 0.8.65 jar aitoa-code Example Source Codes from the Book "Introduction to Optimization Algorithms" diff --git a/src/main/java/aitoa/examples/jssp/EJSSPExperimentStageACO.java b/src/main/java/aitoa/examples/jssp/EJSSPExperimentStageACO.java index 7c6be39..13a8105 100644 --- a/src/main/java/aitoa/examples/jssp/EJSSPExperimentStageACO.java +++ b/src/main/java/aitoa/examples/jssp/EJSSPExperimentStageACO.java @@ -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 }) {