Skip to content
Snippets Groups Projects
Commit 43a1ea3c authored by Bernhard Johannes Berger's avatar Bernhard Johannes Berger
Browse files

Inproved release scripts.

parent a22c5a7c
No related branches found
No related tags found
No related merge requests found
Pipeline #240468 passed
#!/bin/bash
if [ "$#" -ne 6 ]; then
echo "Usage: $0 <execution-folder> <ea-file> <mll-file> <pre-trained.pson> <training-points.json> <output>"
if [ "$#" -ne 7 ]; then
echo "Usage: $0 <execution-folder> <ea-file> <mll-file> <pre-trained.pson> <training-points.json> <output> <constraint-folder>"
exit 1
fi
......@@ -25,4 +25,5 @@ java -Dorg.jboss.logging.provider=slf4j\
"-Bsurrogate:configuration-file=$3" \
"-Bsurrogate:pre-trained=$4" \
"-Bsurrogate:training-data=$5"\
"-Bcore:evaluation-output-folder=$6"
"-Bcore:evaluation-output-folder=$6" \
"-Bcore:constraint-folder=$7"
......@@ -21,4 +21,4 @@ java -Dorg.jboss.logging.provider=slf4j\
-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"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment