mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-24 19:16:49 +08:00
Compare commits
2 Commits
sf_1.8_bet
...
sf_1.8_bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ac44b40c9 | ||
|
|
b839ea6c0c |
@@ -58,7 +58,7 @@ using namespace std;
|
||||
/// Version number. If this is left empty, the current date (in the format
|
||||
/// YYMMDD) is used as a version number.
|
||||
|
||||
static const string EngineVersion = "1.8 beta 1";
|
||||
static const string EngineVersion = "1.8 beta 2";
|
||||
static const string AppName = "Stockfish";
|
||||
static const string AppTag = "";
|
||||
|
||||
|
||||
@@ -356,7 +356,7 @@ void init_search() {
|
||||
|
||||
// Init futility margins array
|
||||
for (d = 0; d < 16; d++) for (mc = 0; mc < 64; mc++)
|
||||
FutilityMarginsMatrix[d][mc] = 112 * int(log(double(d * d) / 2) / log(2.0) + 1) - 8 * mc + 45;
|
||||
FutilityMarginsMatrix[d][mc] = 112 * int(log(double(d * d) / 2) / log(2.0) + 1.001) - 8 * mc + 45;
|
||||
|
||||
// Init futility move count array
|
||||
for (d = 0; d < 32; d++)
|
||||
|
||||
Reference in New Issue
Block a user