diff --git a/README.md b/README.md index f5fae1a..e5aa46f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,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.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 @@ -52,7 +52,7 @@ Notice that you may have more dependencies in your `dependencies` section, say o com.github.thomasWeise aitoa-code - 0.8.49 + 0.8.50 ``` diff --git a/pom.xml b/pom.xml index e977a5b..95e9a53 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ aitoa aitoa-code - 0.8.49 + 0.8.50 jar aitoa-code Example Source Codes from the Book "Introduction to Optimization Algorithms" diff --git a/src/main/java/aitoa/examples/jssp/EJSSPExperimentStage.java b/src/main/java/aitoa/examples/jssp/EJSSPExperimentStage.java index a9224b0..25c72be 100644 --- a/src/main/java/aitoa/examples/jssp/EJSSPExperimentStage.java +++ b/src/main/java/aitoa/examples/jssp/EJSSPExperimentStage.java @@ -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)); } /**