repo.or.cz
/
siwg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tree2
[siwg.git]
/
espy
/
src
/
tree
/
Search.h
blob
cc8db82a2ca801b6326f77939498f61df0dacdad
1
/**
2
* \file
3
*
4
* Prototype of search algorithms implementations.
5
*
6
*/
7
8
#ifndef __Search__
9
#define __Search__
10
11
#include
"Game.h"
12
13
template
<
class
G
>
14
class
Search
{
15
16
public
:
17
void
position
(
G
&);
18
19
void
search
();
20
void
search_single_node
();
21
22
int
result
();
23
int
nodes
();
24
int
depth
();
25
int
depth
(
int
);
26
};
27
28
#endif
/* __Search__ */