[go: up one dir, main page]

Menu

[r225]: / tags / 0.3.0 / search.h  Maximize  Restore  History

Download this file

14 lines (9 with data), 321 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#ifndef SEARCH_H
#define SEARCH_H
#include "position.h"
#include "notation.h"
#include "types.h"
void Search(Position& position, int depth);
Value full_search(Position& pos, Value alpha, Value beta, int depth, int maxDepth, Move* pv);
//void SelectivityPruning(Position&pos, ExtMove* localmoves);
#endif