Skip to content

Commit a1c619f

Browse files
bohaghostilefork
authored andcommitted
historical commit dds 2.7.0
1 parent 31367f3 commit a1c619f

37 files changed

+13438
-9554
lines changed

ABsearch.cpp

Lines changed: 1671 additions & 0 deletions
Large diffs are not rendered by default.

ABsearch.h

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
#define DDS_POS_LINES 5
2+
#define DDS_HAND_LINES 12
3+
#define DDS_NODE_LINES 4
4+
#define DDS_FULL_LINE 80
5+
#define DDS_HAND_OFFSET 16
6+
#define DDS_HAND_OFFSET2 12
7+
#define DDS_DIAG_WIDTH 34
8+
9+
10+
bool ABsearch(
11+
struct pos * posPoint,
12+
int target,
13+
int depth,
14+
struct localVarType * thrp);
15+
16+
bool ABsearch0(
17+
struct pos * posPoint,
18+
int target,
19+
int depth,
20+
struct localVarType * thrp);
21+
22+
bool ABsearch1(
23+
struct pos * posPoint,
24+
int target,
25+
int depth,
26+
struct localVarType * thrp);
27+
28+
bool ABsearch2(
29+
struct pos * posPoint,
30+
int target,
31+
int depth,
32+
struct localVarType * thrp);
33+
34+
bool ABsearch3(
35+
struct pos * posPoint,
36+
int target,
37+
int depth,
38+
struct localVarType * thrp);
39+
40+
void InitFileTopLevel(
41+
int thrId);
42+
43+
void InitFileABstats(
44+
int thrId);
45+
46+
void InitFileABhits(
47+
int thrId);
48+
49+
void InitFileTTstats(
50+
int thrId);
51+
52+
void InitFileTimer(
53+
int thrId);
54+
55+
void CloseFileTopLevel(
56+
localVarType * thrp);
57+
58+
void CloseFileABhits(
59+
localVarType * thrp);
60+
61+
void DumpTopLevel(
62+
struct localVarType * thrp,
63+
int tricks,
64+
int lower,
65+
int upper,
66+
int printMode);
67+

0 commit comments

Comments
 (0)