def check_for_syn_results(proj_name, solution_num, top_level_function_name):
return_val = False
try:
with click.open_file(proj_name + "/solution" + str(solution_num) + "/syn/report/" + top_level_function_name + "_csynth.rpt"):
return_val = True
except OSError:
pass
return return_val
# Function to check is C synthesis is going to be required but may have been forgorgotten by the user.
评论列表
文章目录