Skip to content
Snippets Groups Projects
Commit a1cee921 authored by Johannes Mey's avatar Johannes Mey
Browse files

set defaults in scripts to paper values

parent 07882902
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ then ...@@ -12,7 +12,7 @@ then
echo "Usage: ./scripts/configure.sh min max timeout runs" echo "Usage: ./scripts/configure.sh min max timeout runs"
echo "Will configure the generateor and benchmark to use problems between sizes min and max" echo "Will configure the generateor and benchmark to use problems between sizes min and max"
echo "The benchmark receives a timeout in seconds and the amount of runs" echo "The benchmark receives a timeout in seconds and the amount of runs"
echo "Default is: ./scripts/configure.sh 1 1024 900 10" echo "Default is: ./scripts/configure.sh 1 512 900 10"
exit 1 exit 1
fi fi
echo "Configuring the source with:" echo "Configuring the source with:"
......
...@@ -32,7 +32,7 @@ ResultHelper.saveConfiguration(benchmarkId, "IndividualBenchmarkInjectScript.gro ...@@ -32,7 +32,7 @@ ResultHelper.saveConfiguration(benchmarkId, "IndividualBenchmarkInjectScript.gro
def ec = new ExecutionConfig(8000, 32000) def ec = new ExecutionConfig(8000, 32000)
def minSize = 1 def minSize = 1
def maxSize = 1024 def maxSize = 512
def timeout = 900 def timeout = 900
def runs = 10 def runs = 10
......
...@@ -27,11 +27,11 @@ println('If there are other Java processes, use:') ...@@ -27,11 +27,11 @@ println('If there are other Java processes, use:')
println('$ killall -9 java') println('$ killall -9 java')
def benchmarkId = ResultHelper.createNewResultDir() def benchmarkId = ResultHelper.createNewResultDir()
ResultHelper.saveConfiguration(benchmarkId) ResultHelper.saveConfiguration(benchmarkId, "IndividualBenchmarkRepairScript.groovy")
def ec = new ExecutionConfig(8000, 32000) def ec = new ExecutionConfig(8000, 32000)
def minSize = 1 def minSize = 1
def maxSize = 1024 def maxSize = 512
def timeout = 900 def timeout = 900
def runs = 10 def runs = 10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment