~ubuntu-branches/ubuntu/precise/dds/precise

« back to all changes in this revision

Viewing changes to debian/SolveBoard.3

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2011-02-09 13:40:17 UTC
  • mfrom: (11.2.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110209134017-0niijewtplotdij7
Tags: 2.1.1+ddd105-2
Also run python test when building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH SolveBoard 3 2010-04
 
1
.TH SolveBoard 3 2010-10
2
2
.\"Bo Haglund, Bob Richardson
3
 
.\"Rev I, 2010-04-10
 
3
.\"Rev J, 2010-05-29
4
4
.\"Latest DLL issue with this description is available at http://www.bahnhof.se/wb758135/
5
5
.SH NAME
6
 
SolveBoard, CalcDDtable - calculate number of possible tricks in a Bridge hand
 
6
InitStart, SolveBoard, CalcDDtable - calculate number of possible tricks in a Bridge hand
7
7
.\"Short description of the DLL functions supported in Double Dummy Problem Solver 1.2
8
8
.SH SYNOPSIS
9
9
.B #include <dds.h>
10
10
 
 
11
.B void InitStart(int gb_ram, int ncores);
 
12
 
11
13
.B int SolveBoard(struct deal, int target, int solutions, int mode, struct futureTricks *futp, int threadIndex);
12
14
 
13
15
.B int CalcDDtable(struct ddTableDeal tableDeal, struct ddTableResults *tablep);
14
16
.SH DESCRIPTION
 
17
.B InitStart
 
18
 
 
19
Initialize data structures for \fBSolveBoard\fP.
 
20
 
 
21
If either \fBgb_ram\fP or \fBncores\fP are zero, autoconfiguration is done.
 
22
This is currently only supported on Windows; other platforms exit fatally when
 
23
attempted.
 
24
 
15
25
.B SolveBoard
16
26
 
17
27
Before \fBSolveBoard\fP can be called, a structure of type "\fBfutureTricks\fP" must be declared.
122
132
 
123
133
.SH Revision History
124
134
 
125
 
Rev A, 2006-02-25.              First issue.
 
135
Rev A, 2006-02-25       First issue.
126
136
 
127
 
Rev B, 2006-03-20               Updated issue.
 
137
Rev B, 2006-03-20       Updated issue.
128
138
 
129
139
Rev C, 2006-03-28       Updated issue. Addition of the SolveBoard parameter ”mode”.
130
140
 
142
152
 
143
153
Rev H, 2007-04-23       DDS release 1.4, changes for parameter mode=2.
144
154
 
145
 
Rev I,  2010-04-10      DDS release 1.2, multi-thread support.
 
155
Rev I, 2010-04-10       DDS release 1.2, multi-thread support.
 
156
 
 
157
Rec J, 2010-05-29       DDS release 2.1, OpenMP support, reuse of previous DD transposition table results of similar deals.