File: search.h

package info (click to toggle)
polyglot 2.0.4%2Bgit20210322-1
  • links: PTS
  • area: main
  • in suites: bookworm, trixie
  • size: 1,284 kB
  • sloc: ansic: 10,443; sh: 3,711; makefile: 18
file content (25 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// search.h

#ifndef SEARCH_H
#define SEARCH_H

// includes

#include "board.h"
#include "util.h"

// defines

#define DepthMax 63

// functions

extern void search       (const board_t * board, int depth_max, double time_max);
extern void search_perft (const board_t * board, int depth_max);

extern void do_perft     (int argc, char * argv[]);

#endif // !defined SEARCH_H

// end of search.h