Skip to content

Commit

Permalink
Add Server Standard Configuration to Run the Experiments (#88)
Browse files Browse the repository at this point in the history
This is mainly a copy of PR #86 to have the server paths separated from the local paths. This PR adds the server standard configuration to run the experiments for the publication "The Maximum Transmission Switching Flow Problem" (2018, ACM e-Energy) [1]. The project configuration on the local computer is used to avoid long command line text with arguments, to avoid mistakes, and improve on the reproducibility.

Changes to be committed:
new file: evaluations/2018_ACM_The-Maximum-Transmission-Switching-Flow-Problem/experiments/Configurations/serverStdConfig.sh

Publication:
[1] The Maximum Transmission Switching Flow Problem, ACM e-Energy, 2018, doi:10.1145/3208903.3208910.
  • Loading branch information
franziska-wegner authored Jan 4, 2024
1 parent 172dccc commit e9903e6
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/sh
#
# serverConfig.sh
#
# Created on: Jan 30, 2019
# Author: Franziska Wegner
#
# Project configuration on the server to avoid long command line text with
# arguments.
#
#########################################################
# Define server standard argument ########################
#########################################################

EGOA_ALGORITHM="DCMTSF"
EGOA_DIR_PATH_BENCHMARK_DATA=""
EGOA_DIR_PATH_OUTPUT=""
EGOA_FILE_PATH_EXECUTABLE=""
EGOA_EXECUTABLE_NAME="egoa"

# Maximum execution time of the algorithm
EGOA_MAXIMUM_EXECUTION_TIME="0"
# Track solutions over time (e.g., MILP solver via callbacks)
EGOA_TRACK_SOLUTIONS="TRUE"
# Number of parallel program executions (compute/server dependent)
EGOA_NUM_PARALLEL_EXECUTIONS="40"
# Number of parallel processes each execution of the algorithm gets (dependent
# on the evaluation)
EGOA_NUM_PARALLEL_PROCESSES="1"

# Clean output directory
EGOA_CLEAN_OUTPUT_DIR="TRUE"

0 comments on commit e9903e6

Please sign in to comment.