9mm: Fist move shuffle and do not only place on star point (Disabled)
This commit is contained in:
parent
e3d373bef2
commit
da4da92797
|
@ -409,6 +409,12 @@ void move_priority_list_shuffle()
|
|||
for (size_t i = 0; i < 8; i++) {
|
||||
MoveList<LEGAL>::movePriorityList[i + 16] = movePriorityList3[i];
|
||||
}
|
||||
#if 0
|
||||
if (rule.piecesCount == 9 && gameOptions.getShufflingEnabled()) {
|
||||
const uint32_t seed = static_cast<uint32_t>(now());
|
||||
std::shuffle(MoveList<LEGAL>::movePriorityList.begin(), MoveList<LEGAL>::movePriorityList.end(), std::default_random_engine(seed));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -37,6 +37,8 @@
|
|||
#include "types.h"
|
||||
#include "option.h"
|
||||
|
||||
#include <random>
|
||||
|
||||
using std::string;
|
||||
using Eval::evaluate;
|
||||
using namespace Search;
|
||||
|
@ -122,6 +124,15 @@ int Thread::search()
|
|||
|
||||
MoveList<LEGAL>::shuffle();
|
||||
|
||||
#if 0
|
||||
// TODO: Only NMM
|
||||
if (rootPos->piece_on_board_count(BLACK) + rootPos->piece_on_board_count(WHITE) <= 1 &&
|
||||
rule.piecesCount == 9 && gameOptions.getShufflingEnabled()) {
|
||||
const uint32_t seed = static_cast<uint32_t>(now());
|
||||
std::shuffle(MoveList<LEGAL>::movePriorityList.begin(), MoveList<LEGAL>::movePriorityList.end(), std::default_random_engine(seed));
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef MTDF_AI
|
||||
Value alpha = -VALUE_INFINITE;
|
||||
Value beta = VALUE_INFINITE;
|
||||
|
|
Loading…
Reference in New Issue