Use Heinz's RKiss instead of marsenne

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2010-11-07 11:13:17 +01:00
parent 287556f97d
commit f5e28ef512
7 changed files with 95 additions and 226 deletions

View File

@@ -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;
};