# biogeme - run several biogeme runs in parallel
# Command to start one process.
RUN_BIN="biogeme"
# Variable argument list.
# A file containing all the variations of arguments
# that should be processed. Each line in this file will provoke one run.
# The format of the file is: run_name : modelfile : datafile.dat
BIOGEME_ARGS_FILE="biogeme.arglist"
# name of the model and parameter directory
MODEL_DIRNAME="mods"
# name of the data directory
DATA_DIRNAME="dats"
# run with this amount of respect to others
NICENESS=19
# maximum number of processes to run at once
MAX_PROCESSES=4
# Wait that many seconds when the maxium number of running processes are
# reached before retrying to start a new process.
RETRY=2
# ----------- do not edit for biogeme -----------
# Common arguments to all processes.
# Arguments that are common to all processes may be passed here,
# Preceeding arguments to the variable arguments:
COMMON_LEADING_ARGS=""
# Arguments following the variable arguments:
COMMON_POST_ARGS=""
# Variable argument list.
# A file containing all the variations of arguments
# that should be run. Each line in this file will provoke one process.
ARGLIST_FILE="biogeme.arglist.auto"
. /usr/local/lib/parallelstarter/biogeme/generate_arglist
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>