Skip to content
Snippets Groups Projects
Commit 18d9e3ec authored by Thom Badings's avatar Thom Badings
Browse files

make model argument required

parent 7eec3e72
No related branches found
No related tags found
1 merge request!2Merged
......@@ -51,7 +51,7 @@ def parse_arguments():
# Argument for model to load
parser.add_argument('--model', type=str, action="store", dest='model',
default=False, help="Model to load")
default=False, help="Model to load", required=True)
# Number of Monte Carlo simulation iterations
parser.add_argument('--monte_carlo_iter', type=int, action="store", dest='monte_carlo_iter',
......
......@@ -27,4 +27,4 @@ python3 RunFile.py --model 'building_temp' --prism_java_memory 8 --drug_partitio
#
# Anaesthesia delivery problem
echo -e "++++++++ RUN ANAESTHESIA DELIVERY BENCHMARK ++++++++\n";
python3 RunFile.py --model 'anaesthesia_delivery' --prism_java_memory 32 --drug_partition [20,30,30];
\ No newline at end of file
python3 RunFile.py --model 'anaesthesia_delivery' --prism_java_memory 32 --drug_partition [25,40,40];
\ 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