]> git.sesse.net Git - stockfish/commitdiff
Let rkiss.h to follow SF coding style
authorMarco Costalba <mcostalba@gmail.com>
Sun, 7 Nov 2010 11:11:01 +0000 (12:11 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sun, 7 Nov 2010 11:22:15 +0000 (12:22 +0100)
Fix also Makefile after mersenne.cpp has been removed

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/Makefile
src/book.cpp
src/position.cpp
src/rkiss.h

index 4433fad7334269f225fc437931f54d12cb4ba783..aed8271b0591a2c80b1cb0f52168fa5960014894 100644 (file)
@@ -34,9 +34,8 @@ PGOBENCH = ./$(EXE) bench 32 1 10 default depth
 
 ### Object files
 OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
 
 ### Object files
 OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
-       misc.o move.o movegen.o history.o movepick.o search.o piece.o \
-       position.o direction.o tt.o uci.o ucioption.o \
-       mersenne.o book.o bitbase.o san.o benchmark.o timeman.o
+       misc.o move.o movegen.o history.o movepick.o search.o piece.o position.o \
+       direction.o tt.o uci.o ucioption.o book.o bitbase.o san.o benchmark.o timeman.o
 
 
 ### ==========================================================================
 
 
 ### ==========================================================================
index a34d17b74ca7dc13c46c4ab0535b9d0d639356c3..2aca81cfd0b81971c2c7086de1f331e983464842 100644 (file)
@@ -346,7 +346,7 @@ namespace {
 Book::Book() {
 
   for (int i = abs(get_system_time() % 10000); i > 0; i--)
 Book::Book() {
 
   for (int i = abs(get_system_time() % 10000); i > 0; i--)
-      RKiss.rand32();
+      RKiss.rand<unsigned>();
 }
 
 
 }
 
 
@@ -412,7 +412,7 @@ Move Book::get_move(const Position& pos, bool findBestMove) {
 
   BookEntry entry;
   int bookMove = MOVE_NONE;
 
   BookEntry entry;
   int bookMove = MOVE_NONE;
-  int scoresSum = 0, bestScore = 0;
+  unsigned scoresSum = 0, bestScore = 0;
   uint64_t key = book_key(pos);
 
   // Choose a book move among the possible moves for the given position
   uint64_t key = book_key(pos);
 
   // Choose a book move among the possible moves for the given position
@@ -422,9 +422,7 @@ Move Book::get_move(const Position& pos, bool findBestMove) {
       if (entry.key != key)
           break;
 
       if (entry.key != key)
           break;
 
-      int score = entry.count;
-
-      assert(score > 0);
+      unsigned score = entry.count;
 
       // If findBestMove is true choose highest rated book move
       if (findBestMove)
 
       // If findBestMove is true choose highest rated book move
       if (findBestMove)
@@ -441,7 +439,7 @@ Move Book::get_move(const Position& pos, bool findBestMove) {
       // high score it has more probability to be choosen then a one with
       // lower score. Note that first entry is always chosen.
       scoresSum += score;
       // high score it has more probability to be choosen then a one with
       // lower score. Note that first entry is always chosen.
       scoresSum += score;
-      if (int(RKiss.rand32() % scoresSum) < score)
+      if (RKiss.rand<unsigned>() % scoresSum < score)
           bookMove = entry.move;
   }
   if (!bookMove)
           bookMove = entry.move;
   }
   if (!bookMove)
index e6261d3c661e9be9af618ec05e2e97c4aeab7d30..ae63f26343f5026d14dbe989cf65f3e53415546a 100644 (file)
@@ -1763,16 +1763,16 @@ void Position::init_zobrist() {
   int i,j, k;
 
   for (i = 0; i < 2; i++) for (j = 0; j < 8; j++) for (k = 0; k < 64; k++)
   int i,j, k;
 
   for (i = 0; i < 2; i++) for (j = 0; j < 8; j++) for (k = 0; k < 64; k++)
-      zobrist[i][j][k] = Key(RKiss.rand64());
+      zobrist[i][j][k] = RKiss.rand<Key>();
 
   for (i = 0; i < 64; i++)
 
   for (i = 0; i < 64; i++)
-      zobEp[i] = Key(RKiss.rand64());
+      zobEp[i] = RKiss.rand<Key>();
 
   for (i = 0; i < 16; i++)
 
   for (i = 0; i < 16; i++)
-      zobCastle[i] = Key(RKiss.rand64());
+      zobCastle[i] = RKiss.rand<Key>();
 
 
-  zobSideToMove = Key(RKiss.rand64());
-  zobExclusion  = Key(RKiss.rand64());
+  zobSideToMove = RKiss.rand<Key>();
+  zobExclusion  = RKiss.rand<Key>();
 }
 
 
 }
 
 
index 6e94dc27fa723fc8426216df2fbf0bf3cf2e452c..13f0640765a1ba42f23413ecc65b4cfe3bf22dc8 100644 (file)
 
  ** *********************************************************************** **/
 
 
  ** *********************************************************************** **/
 
-#ifndef _RKISS_H_
-#define _RKISS_H_
+#if !defined(RKISS_H_INCLUDED)
+#define RKISS_H_INCLUDED
 
 
-/** Includes **/
-#include <cstdlib>    // srand(), rand()
-#include <ctime>      // time()
-#include "types.h"    // (u)int8_t .. (u)int64_t
 
 
+////
+//// Includes
+////
 
 
-/** Random class **/
-class RKISS {
+#include <cstdlib>
+#include <ctime>
 
 
-private:
-       // Keep variables always together
-       struct S { uint64_t a; uint64_t b; uint64_t c; uint64_t d; } s;
+#include "types.h"
 
 
-       // Init seed and scramble a few rounds
-       void raninit ( uint64_t seed ) {
-               s.a = 0xf1ea5eed; s.b = s.c = s.d = seed;
-               for ( uint64_t i=0; i<8; i++ ) rand64();
-       }
 
 
-public:
-       // Instance seed random or implicite
-       RKISS() { ::srand ( (uint32_t)time(NULL) ); raninit ( (uint64_t)::rand() ); }
-       // RKISS( uint64_t s ) { raninit ( s ); }
+////
+//// Types
+////
 
 
-       // (Re)init seed
-       // void init ( uint64_t seed ) { raninit ( seed ); }
+class RKISS {
 
 
-       // Return 32 bit unsigned integer in between [0,2^32-1]
-       uint32_t rand32 () { return (uint32_t) rand64 (); }
+       // Keep variables always together
+       struct S { uint64_t a, b, c, d; } s;
 
        // Return 64 bit unsigned integer in between [0,2^64-1]
 
        // Return 64 bit unsigned integer in between [0,2^64-1]
-       uint64_t rand64 () {
-               const uint64_t e = s.a - ((s.b<<7) | (s.b>>57));
-               s.a = s.b ^ ((s.c<<13) | (s.c>>51));
-               s.b = s.c + ((s.d<<37) | (s.d>>27));
+       uint64_t rand64() {
+
+               const uint64_t
+          e = s.a - ((s.b <<  7) | (s.b >> 57));
+               s.a = s.b ^ ((s.c << 13) | (s.c >> 51));
+               s.b = s.c + ((s.d << 37) | (s.d >> 27));
                s.c = s.d + e;
                return s.d = e + s.a;
        }
 
                s.c = s.d + e;
                return s.d = e + s.a;
        }
 
-       // Return double in between [0,1). Keep full 53 bit mantissa
-       // double frand () { return (int64_t)(rand64()>>11) * (1.0/(67108864.0*134217728.0)); }
+       // Init seed and scramble a few rounds
+       void raninit(uint64_t seed) {
+
+               s.a = 0xf1ea5eed;
+        s.b = s.c = s.d = seed;
+               for (uint64_t i = 0; i < 8; i++)
+            rand64();
+       }
+
+public:
+       // Instance seed random or implicite
+       RKISS() { ::srand(uint32_t(time(NULL))); raninit(uint64_t(::rand())); }
+
+       // Return random number of type T (must be castable from uint64_t)
+    template<typename T>
+       T rand() { return T(rand64()); }
 };
 
 };
 
-// _RKISS_H_
-#endif
+#endif // !defined(RKISS_H_INCLUDED)