Spaces:
Running
Running
Update utils.py
Browse files
utils.py
CHANGED
|
@@ -33,7 +33,7 @@ def evaluate_generations(generations: list, level: str = "all", debug: bool = Fa
|
|
| 33 |
for o_idx, o in enumerate(problem_generations):
|
| 34 |
curr_res = [-2]
|
| 35 |
try:
|
| 36 |
-
curr_res =
|
| 37 |
if debug:
|
| 38 |
print(f"\nSuccessful compilation of task {index}!")
|
| 39 |
fixed = []
|
|
|
|
| 33 |
for o_idx, o in enumerate(problem_generations):
|
| 34 |
curr_res = [-2]
|
| 35 |
try:
|
| 36 |
+
curr_res = run_test(sample, test=o, debug=debug)
|
| 37 |
if debug:
|
| 38 |
print(f"\nSuccessful compilation of task {index}!")
|
| 39 |
fixed = []
|