# The BP application can be executed by invoking the docker directly:
docker run --rm -v /ABSOLUTE_PATH_TO_BP_APP:/BP bapdock /BP/src/run.jl /BP/data/AI/201_2500_DI_0.txt --cfg /BP/config/BPP.cfg --u 66

# Interactive mode:
docker run -it --rm -v /ABSOLUTE_PATH_TO_BP_APP:/BP bapdock

# Help with command line arguments
docker run --rm -v /ABSOLUTE_PATH_TO_BP_APP:/BP bapdock /BP/src/run.jl --help

# It is possible to run a batch of instances:
docker run --rm -v /ABSOLUTE_PATH_TO_BP_APP:/BP bapdock /BP/src/run.jl -b /BP/AI.batch

# If you are calling docker through a bash terminal (e.g. Linux, MacOS or Docker QuickStart Terminal), you can call the script named VRPSolver in the demo directory. For example:
./VRPSolver data/AI/201_2500_DI_0.txt --cfg config/BPP.cfg --u 66

# If you don't have permission to run VRPSolver script, call "chmod +x VRPSolver" before.
# This script must be called in the root directory of the application.

# Interactive mode:
./VRPSolver -it

# Help with command line arguments
./VRPSolver --help

# Running a batch of instances (see AI.batch before for adjustments):
./VRPSolver -b AI.batch

# Files with the extension .sh contain the call of VRPSolver for all instances individually.
