#include "osl/search/alphaBeta3.h"#include "osl/search/searchRecorder.h"#include "osl/search/bigramKillerMove.h"#include "osl/search/killerMoveTable.h"#include "osl/search/simpleHashTable.h"#include "osl/search/simpleHashRecord.h"#include "osl/search/shouldPromoteCut.h"#include "osl/search/moveWithComment.h"#include "osl/checkmate/immediateCheckmate.h"#include "osl/eval/see.h"#include "osl/rating/featureSet.h"#include "osl/rating/ratingEnv.h"#include "osl/move_generator/legalMoves.h"#include "osl/move_generator/capture_.h"#include "osl/move_generator/escape_.h"#include "osl/move_generator/promote_.h"#include "osl/move_generator/addEffect_.h"#include "osl/move_generator/allMoves.h"#include "osl/move_classifier/directCheck.h"#include "osl/move_classifier/moveAdaptor.h"#include "osl/move_action/store.h"#include "osl/move_order/captureEstimation.h"#include "osl/move_order/moveSorter.h"#include "osl/move_order/captureSort.h"#include "osl/move_order/cheapPtype.h"#include "osl/apply_move/applyMoveWithPath.h"#include "osl/record/csa.h"#include "osl/stl/hash_map.h"#include "osl/stat/average.h"#include "osl/stat/histogram.h"#include "osl/repetitionCounter.h"#include <boost/scoped_array.hpp>#include <boost/foreach.hpp>#include <algorithm>#include <iostream>#include <cstdio>#include <iomanip>
構成 | |
| struct | osl::search::CompactRecord |
| struct | osl::search::CompactHashTable |
| struct | osl::search::AlphaBeta3::CallSearch< P > |
| struct | osl::search::AlphaBeta3::CallQuiesce< P > |
ネームスペース | |
| namespace | osl |
|
| |
| namespace | osl::search |
探索関係 | |
関数 | |
| Ptype | osl::search::promoteIf (Ptype ptype) |
変数 | |
| const int | extended_futility_margin = 256*16 |
| const int | futility_margin = 128*16 |
| const int | table_record_limit = 400 |
| const int | lmr_fullwidth = 4 |
| const int | lmr_reduce_limit = 200 |
| const bool | best_move_extension_enabled = false |
| const bool | futility_pruning_enabled = true |
| const bool | extended_futility_pruning_enabled = true |
| const bool | cut_drop_move_in_frontier_node = true |
| const bool | lmr_enabled = true |
| const bool | lmr_verify_enabled = true |
| const bool | immediate_checkmate_enabled = true |
| const bool | decorate_csa_in_pv = false |
| const bool | show_height_in_pv = false |
| const bool best_move_extension_enabled = false |
alphaBeta3.cc の 42 行で定義されています。
| const bool cut_drop_move_in_frontier_node = true |
alphaBeta3.cc の 45 行で定義されています。
| const bool decorate_csa_in_pv = false |
alphaBeta3.cc の 48 行で定義されています。
| const int extended_futility_margin = 256*16 |
alphaBeta3.cc の 40 行で定義されています。
参照元 osl::search::AlphaBeta3::generateAllMoves(), と osl::search::AlphaBeta3::search().
| const bool extended_futility_pruning_enabled = true |
alphaBeta3.cc の 44 行で定義されています。
参照元 osl::search::AlphaBeta3::generateAllMoves(), と osl::search::AlphaBeta3::search().
| const int futility_margin = 128*16 |
alphaBeta3.cc の 40 行で定義されています。
| const bool futility_pruning_enabled = true |
alphaBeta3.cc の 43 行で定義されています。
参照元 osl::search::AlphaBeta3::generateAllMoves(), と osl::search::AlphaBeta3::search().
| const bool immediate_checkmate_enabled = true |
| const bool lmr_enabled = true |
alphaBeta3.cc の 46 行で定義されています。
| const int lmr_fullwidth = 4 |
alphaBeta3.cc の 41 行で定義されています。
| const int lmr_reduce_limit = 200 |
alphaBeta3.cc の 41 行で定義されています。
| const bool lmr_verify_enabled = true |
alphaBeta3.cc の 46 行で定義されています。
| const bool show_height_in_pv = false |
alphaBeta3.cc の 48 行で定義されています。
| const int table_record_limit = 400 |
alphaBeta3.cc の 40 行で定義されています。
参照元 osl::search::AlphaBeta3::presearch(), と osl::search::AlphaBeta3::search().
1.6.3