basil00 / Fathom

Syzygy TB probe tool.
MIT License
17 stars 26 forks source link

Separator between various kinds of drawing moves #2

Closed niklasf closed 8 years ago

niklasf commented 8 years ago

A separator is missing between the various kinds of drawing moves.

print_moves(pos, results, TB_CURSED_WIN);
print_moves(pos, results, TB_DRAW);
print_moves(pos, results, TB_BLESSED_LOSS);

Example FEN 8/2P5/KP6/8/8/8/8/2qk4 w - - 0 1. Expecting:

[DrawingMoves "Kb7, Kb5, Ka7"]

Actual output:

[DrawingMoves "Kb7Kb5, Ka7"]
basil00 commented 8 years ago

Thanks for the report, fixed.

niklasf commented 8 years ago

Excellent. Thanks!