Clean up position setup code

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Joona Kiiski
2011-01-06 13:34:16 +02:00
committed by Marco Costalba
parent 1a20d72701
commit b08ba446f6
3 changed files with 21 additions and 33 deletions

View File

@@ -171,11 +171,7 @@ namespace {
while (up >> token)
{
move = move_from_uci(pos, token);
pos.do_move(move, st);
if (pos.rule_50_counter() == 0)
pos.reset_game_ply();
pos.inc_startpos_ply_counter(); //FIXME: make from_fen to support this and rule50
pos.do_setup_move(move, st);
}
// Our StateInfo st is about going out of scope so copy
// its content inside pos before it disappears.