From f0e41bb09e72458d5b5d5899db737f5cddbd03b2 Mon Sep 17 00:00:00 2001
From: Daniel Vedder <daniel.vedder@idiv.de>
Date: Sat, 26 Nov 2022 11:24:26 +0100
Subject: [PATCH] Removed --mapfile and --runtime as commandline options

---
 README.md         | 5 -----
 src/core/input.jl | 8 --------
 2 files changed, 13 deletions(-)

diff --git a/README.md b/README.md
index 7337725..64d80b4 100644
--- a/README.md
+++ b/README.md
@@ -45,14 +45,9 @@ optional arguments:
   -c, --configfile CONFIGFILE
                         name of the configuration file
   -s, --seed SEED       inital random seed (type: Int64)
-  -m, --mapfile MAPFILE
-                        name of the map file
   -o, --outdir OUTDIR   location of the output directory
   -l, --loglevel LOGLEVEL
                         verbosity: "debug", "info", or "quiet"
-  -r, --runtime RUNTIME
-                        duration in days that the simulation will run
-                        (type: Int64)
   --version             show version information and exit
   -h, --help            show this help message and exit
 
diff --git a/src/core/input.jl b/src/core/input.jl
index 5390565..229e016 100644
--- a/src/core/input.jl
+++ b/src/core/input.jl
@@ -98,10 +98,6 @@ function parsecommandline()
         "--seed", "-s"
             help = "inital random seed"
             arg_type = Int
-        "--mapfile", "-m"
-            help = "name of the map file"
-            arg_type = String
-            required = false
         "--outdir", "-o"
             help = "location of the output directory"
             arg_type = String
@@ -110,10 +106,6 @@ function parsecommandline()
             help = "verbosity: \"debug\", \"info\", or \"quiet\""
             arg_type = String
             required = false
-        "--runtime", "-r"
-            help = "duration in days that the simulation will run"
-            arg_type = Int
-            required = false
     end
     args = parse_args(s)
     for a in keys(args)
-- 
GitLab