-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31367f3
commit a1c619f
Showing
37 changed files
with
13,438 additions
and
9,554 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#define DDS_POS_LINES 5 | ||
#define DDS_HAND_LINES 12 | ||
#define DDS_NODE_LINES 4 | ||
#define DDS_FULL_LINE 80 | ||
#define DDS_HAND_OFFSET 16 | ||
#define DDS_HAND_OFFSET2 12 | ||
#define DDS_DIAG_WIDTH 34 | ||
|
||
|
||
bool ABsearch( | ||
struct pos * posPoint, | ||
int target, | ||
int depth, | ||
struct localVarType * thrp); | ||
|
||
bool ABsearch0( | ||
struct pos * posPoint, | ||
int target, | ||
int depth, | ||
struct localVarType * thrp); | ||
|
||
bool ABsearch1( | ||
struct pos * posPoint, | ||
int target, | ||
int depth, | ||
struct localVarType * thrp); | ||
|
||
bool ABsearch2( | ||
struct pos * posPoint, | ||
int target, | ||
int depth, | ||
struct localVarType * thrp); | ||
|
||
bool ABsearch3( | ||
struct pos * posPoint, | ||
int target, | ||
int depth, | ||
struct localVarType * thrp); | ||
|
||
void InitFileTopLevel( | ||
int thrId); | ||
|
||
void InitFileABstats( | ||
int thrId); | ||
|
||
void InitFileABhits( | ||
int thrId); | ||
|
||
void InitFileTTstats( | ||
int thrId); | ||
|
||
void InitFileTimer( | ||
int thrId); | ||
|
||
void CloseFileTopLevel( | ||
localVarType * thrp); | ||
|
||
void CloseFileABhits( | ||
localVarType * thrp); | ||
|
||
void DumpTopLevel( | ||
struct localVarType * thrp, | ||
int tricks, | ||
int lower, | ||
int upper, | ||
int printMode); | ||
|
Oops, something went wrong.