Belofte version 2.1.9
A promising chess program using the UCI or Winboard interface
search_bfit.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------+
2 * File: search_bfit.h
3 * Project: part of belofte - A Promising Chess Program
4 * Author: yves
5 * SPDX-License-Identifier: GPL-2.0-only
6+----------------------------------------------------------------------*/
7
8#if !defined(SEARCH_BFIT_H)
9#define SEARCH_BFIT_H
10
11//-----------------------------------------------------------------------
12
13// best move played at depth x, iterating from depth 0 to x
15public:
17 : SearchBruteForce("IterativeBruteForce")
18 { m_iterativesearch = true; }
20 {}
21
22 // no copy or move ctor nor assignment defined
27};
28
29#endif // defined SEARCH_BFIT_H
30
31// eof
SearchIterativeBF & operator=(SearchIterativeBF const &)=delete
SearchIterativeBF & operator=(SearchIterativeBF &&)=delete
SearchIterativeBF(SearchIterativeBF &&)=delete
~SearchIterativeBF() override
Definition search_bfit.h:19
SearchIterativeBF(SearchIterativeBF const &)=delete
bool m_iterativesearch
Definition search.h:126