Belofte version 2.2.0
A promising chess program using the UCI or Winboard interface
search_abfh.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------+
2 * File: search_abhf.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_ABFH_H)
9#define SEARCH_ABFH_H
10
11//-----------------------------------------------------------------------
12
14public:
15 explicit SearchAlphaBetaFH();
17 {}
18
19 // no copy or move ctor nor assignment defined
24};
25
26//-----------------------------------------------------------------------
27
28#endif // defined SEARCH_ABFH_H
29
30// eof
SearchAlphaBetaFH & operator=(SearchAlphaBetaFH &&)=delete
SearchAlphaBetaFH & operator=(SearchAlphaBetaFH const &)=delete
SearchAlphaBetaFH(SearchAlphaBetaFH const &)=delete
SearchAlphaBetaFH(SearchAlphaBetaFH &&)=delete
~SearchAlphaBetaFH() override
Definition search_abfh.h:16
SearchAlphaBetaFH()
AB algorithm for FailHard variation.
SearchAlphaBeta(std::string const &s)
Definition search_ab.h:15