mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-25 19:46:55 +08:00
Use Heinz's RKiss instead of marsenne
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -38,6 +38,7 @@
|
||||
|
||||
#include "move.h"
|
||||
#include "position.h"
|
||||
#include "rkiss.h"
|
||||
|
||||
|
||||
////
|
||||
@@ -56,7 +57,7 @@ class Book : private std::ifstream {
|
||||
Book(const Book&); // just decleared..
|
||||
Book& operator=(const Book&); // ..to avoid a warning
|
||||
public:
|
||||
Book() {}
|
||||
Book();
|
||||
~Book();
|
||||
void open(const std::string& fName);
|
||||
void close();
|
||||
@@ -74,6 +75,7 @@ private:
|
||||
|
||||
std::string fileName;
|
||||
int bookSize;
|
||||
RKISS RKiss;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user