[perft] Print the depth of the position being checked in check-positions

This commit is contained in:
Eryn Wells 2025-06-15 16:24:19 -07:00
parent df49a4950b
commit fb182e7ac0

View file

@ -58,6 +58,7 @@ def main(argv):
print('---')
print(f'fen={fen}')
print(f'depth={depth}')
print(f'expected-nodes={expected_nodes_count}')
nodes_count = run_perft(fen, depth, expected_nodes_count)
@ -71,8 +72,8 @@ def main(argv):
if not did_pass and not should_continue:
return -1
return 0
return 0
if __name__ == '__main__':