parser.add_argument("-r","--requirements",dest="requirements",help="the user-specified requirements file to check")
parser.add_argument("-p","--port",dest="port",type=int,default=8080,help="the port exposing the model checker REST API (default: 8080)")
parser.add_argument("-v","--verbose",dest="verbose",action='store_true',help="print a detailed human-readable output of everything going on. Helpful for debugging.")
parser.add_argument("-z","--stats",dest="stats",action='store_true',help="print stats of Z3 solver")
# Model Checker
parser.add_argument("-c","--check-consistency",dest="consistency",action='store_true',help="check on additional built-in consistency requirements")
parser.add_argument("-S","--skip-common-checks",dest="skip_common",action='store_true',help="skip check on common built-in requirements")