Revert "Store moves sent with "position" UCI command"

This reverts commit 0d68b523a3.

After easy move semplification this machinery is not
needed anymore (because of we don't need to know if a
root move is a recapture)

No functional change.
This commit is contained in:
Marco Costalba
2013-03-04 09:28:21 +01:00
parent 45dba12c5b
commit db322e6a63
6 changed files with 7 additions and 16 deletions

View File

@@ -93,7 +93,6 @@ struct SignalsType {
};
typedef std::auto_ptr<std::stack<StateInfo> > StateStackPtr;
typedef std::auto_ptr<std::vector<Move> > MovesVectPtr;
extern volatile SignalsType Signals;
extern LimitsType Limits;
@@ -102,7 +101,6 @@ extern Position RootPos;
extern Color RootColor;
extern Time::point SearchTime;
extern StateStackPtr SetupStates;
extern MovesVectPtr SetupMoves;
extern void init();
extern size_t perft(Position& pos, Depth depth);