[perft] Print the depth of the position being checked in check-positions
This commit is contained in:
parent
df49a4950b
commit
fb182e7ac0
1 changed files with 3 additions and 2 deletions
|
@ -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__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue