9mm: Fist move shuffle and do not only place on star point (Disabled)

This commit is contained in:
Calcitem 2021-02-03 23:39:22 +08:00
parent e3d373bef2
commit da4da92797
2 changed files with 17 additions and 0 deletions

View File

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

View File

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