#!python

from rge import Engine
import sys


import argparse
parser = argparse.ArgumentParser()
parser.add_argument('dir', type=str, help="directory of config file")
parser.add_argument('--full_diagnostic', type=str, help="Run full diagnostic (print) [default: false]", default=False)
parser.add_argument('--hot_start', type=str, help='Hot start off of a checkpoint', default="")
parser.add_argument('--cuda', action='store_true', help='Enable cuda', default=False)
args = parser.parse_args()

run = Engine.Engine(args.dir, args.hot_start, args.full_diagnostic, args.cuda)

# bash -c  "/anaconda3/bin/python Engine.py $1"