Rename FromTo -> History (#963)

Previously, we had duplicated History:

- one with (piece,to) called History
- one with (from,to) called FromTo

Now that we have only one, rename it to History, which is the generally accepted
name in the chess programming litterature for this technique.

Also correct some comments that had not been updated since the introduction of CMH.

No functional change.
This commit is contained in:
lucasart
2017-01-10 15:47:56 +08:00
committed by Marco Costalba
parent e0504ab876
commit 34e47ca87d
4 changed files with 41 additions and 39 deletions

View File

@@ -70,7 +70,7 @@ public:
Depth completedDepth;
std::atomic_bool resetCalls;
MoveStats counterMoves;
FromToStats fromTo;
HistoryStats history;
CounterMoveHistoryStats counterMoveHistory;
};