From 257be6f74ce779fe793e6779c92888176b2b8b70 Mon Sep 17 00:00:00 2001 From: zhangtianli2006 Date: Mon, 23 Aug 2021 18:19:13 +0800 Subject: [PATCH] [fix] wrong file name Signed-off-by: zhangtianli2006 --- vcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcheck.py b/vcheck.py index 946900e..24b1976 100644 --- a/vcheck.py +++ b/vcheck.py @@ -88,7 +88,7 @@ for i in range(0, sub_tasks): for j in range(0, task_cnt[i]): tot_id += 1 - exe_path = "./std_{}".format(name) + exe_path = "./run_{}".format(name) in_path = "{}.{}.{}.in".format(name, i + 1, j + 1) out_path = ".output.tmp" ans_path = "{}.{}.{}.out".format(name, i + 1, j + 1)