def readFASTOut(fastoutput): try: return load_output(fastoutput) except Exception as e: rtl.exitWithError("Error: {}".format(e))
def _parseSolution(solution): try: data, info, _ = load_output(solution) return (data, info) except Exception as e: rtl.exitWithError("Error: {}".format(e))