Skip to content
Snippets Groups Projects
Commit 1694972d authored by Pintér Gergő's avatar Pintér Gergő
Browse files

Hibajavítás

parent 6cdd3c0d
Branches main
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ def check_pip(tester_list):
past_first_N3 = True
else:
last_probas = [{k: v for k, v in elem.items() if k != 'Stage'} for elem in tester_list[-c.CHECK_LEN:]]
all_conditions_met = all((elem['W'] <= c.W) and (elem['N3'] <= c.N3) for elem in last_probas) and len(tester_list) < c.Terminate
all_conditions_met = all((elem['W'] <= c.W) and (elem['N3'] <= c.N3) for elem in last_probas) and len(tester_list) < c.TERMINATE
return all_conditions_met
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment