Use a global RootMoveList object instead of a pointer

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-01-17 18:41:26 +01:00
parent 846087e4fb
commit 5555b60b38
2 changed files with 35 additions and 35 deletions

View File

@@ -195,7 +195,7 @@ const string pretty_pv(Position& pos, int time, int depth,
size_t length = 0;
// First print depth, score, time and searched nodes...
s << std::setw(2) << depth / 2
s << std::setw(2) << depth
<< (type == VALUE_TYPE_LOWER ? " >" : type == VALUE_TYPE_UPPER ? " <" : " ")
<< std::setw(7) << score_string(score)
<< std::setw(8) << time_string(time);