Skip to content

Commit bbc5c67

Browse files
authored
3.6.3: support longer games (#312)
Elo | 1.86 +- 2.56 (95%) SPRT | 10.0+0.10s Threads=1 Hash=8MB LLR | 2.95 (-2.94, 2.94) [-3.00, 1.00] Games | N: 19608 W: 5067 L: 4962 D: 9579 Penta | [119, 2173, 5124, 2260, 128] http://chess.grantnet.us/test/39442/ Elo | -3.17 +- 4.96 (95%) SPRT | 5.0+0.05s Threads=8 Hash=64MB LLR | -0.87 (-2.94, 2.94) [-3.00, 1.00] Games | N: 5146 W: 1302 L: 1349 D: 2495 Penta | [23, 635, 1302, 592, 21] http://chess.grantnet.us/test/39443/ bench: 1177845
1 parent a27be98 commit bbc5c67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/position.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ class Position
189189
int m_ply;
190190
COLOR m_side;
191191

192-
enum { MAX_UNDO = 1024 };
192+
enum { MAX_UNDO = 2048 };
193193
Undo m_undos[MAX_UNDO];
194194
int m_undoSize;
195195
bool m_initialPosition;

src/uci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include <iostream>
3232
#include <sstream>
3333

34-
const std::string VERSION = "3.6.2";
34+
const std::string VERSION = "3.6.3";
3535
const std::string ARCHITECTURE = " 64 "
3636

3737
#if _BTYPE==0

0 commit comments

Comments
 (0)