Move globals to id_loop()

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-01-17 10:44:00 +01:00
parent 2e2f1064ba
commit 846087e4fb
2 changed files with 55 additions and 58 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
s << std::setw(2) << depth / 2
<< (type == VALUE_TYPE_LOWER ? " >" : type == VALUE_TYPE_UPPER ? " <" : " ")
<< std::setw(7) << score_string(score)
<< std::setw(8) << time_string(time);