From d88d0cfc055f7936ac2cbaa0f9577e05d5a9c559 Mon Sep 17 00:00:00 2001 From: "Bernhard J. Berger" <bernhard.berger@uni-bremen.de> Date: Thu, 19 Jan 2023 01:10:06 +0100 Subject: [PATCH] Fixed execution scripts. --- src/release/debug-search-with-surrogate.sh | 1 + src/release/run-search-with-surrogate.sh | 1 + src/release/run-search.sh | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/release/debug-search-with-surrogate.sh b/src/release/debug-search-with-surrogate.sh index a80c52ca..fb93028c 100755 --- a/src/release/debug-search-with-surrogate.sh +++ b/src/release/debug-search-with-surrogate.sh @@ -17,6 +17,7 @@ java -Dorg.jboss.logging.provider=slf4j\ --module-path "${EVOALPATH}/modules/:$PLUGIN_PATHS" \ --add-modules ALL-MODULE-PATH \ --add-opens java.base/java.lang=guice \ + --add-exports io.jenetics.base/io.jenetics.internal.math=de.evoal.core \ --add-exports io.jenetics.base/io.jenetics.internal.collection=de.evoal.core \ --add-exports io.jenetics.base/io.jenetics.internal.util=de.evoal.core \ -m de.evoal.core/de.evoal.core.main.Evoal \ diff --git a/src/release/run-search-with-surrogate.sh b/src/release/run-search-with-surrogate.sh index ecf853ca..10abbeab 100755 --- a/src/release/run-search-with-surrogate.sh +++ b/src/release/run-search-with-surrogate.sh @@ -16,6 +16,7 @@ java -Dorg.jboss.logging.provider=slf4j\ --module-path "${EVOALPATH}/modules/:$PLUGIN_PATHS" \ --add-modules ALL-MODULE-PATH \ --add-opens java.base/java.lang=guice \ + --add-exports io.jenetics.base/io.jenetics.internal.math=de.evoal.core \ --add-exports io.jenetics.base/io.jenetics.internal.collection=de.evoal.core \ --add-exports io.jenetics.base/io.jenetics.internal.util=de.evoal.core \ -m de.evoal.core/de.evoal.core.main.Evoal \ diff --git a/src/release/run-search.sh b/src/release/run-search.sh index e5a61868..dc5df848 100755 --- a/src/release/run-search.sh +++ b/src/release/run-search.sh @@ -16,9 +16,10 @@ java -Dorg.jboss.logging.provider=slf4j\ --module-path "${EVOALPATH}/modules/:$PLUGIN_PATHS" \ --add-modules ALL-MODULE-PATH \ --add-opens java.base/java.lang=guice \ + --add-exports io.jenetics.base/io.jenetics.internal.math=de.evoal.core \ --add-exports io.jenetics.base/io.jenetics.internal.collection=de.evoal.core \ --add-exports io.jenetics.base/io.jenetics.internal.util=de.evoal.core \ -m de.evoal.core/de.evoal.core.main.Evoal \ "-Bcore:main=heuristic-search" \ "-Bcore:ea-configuration-file=$2" \ - "-Bcore:evaluation-output-folder=$3" \ No newline at end of file + "-Bcore:evaluation-output-folder=$3" -- GitLab