ddss-sys 0.1.0

Generated bindings to ddss, a performance-oriented fork of the DDS double dummy solver for bridge
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/*
   DDS, a bridge double dummy solver.

   Copyright (C) 2006-2014 by Bo Haglund /
   2014-2018 by Bo Haglund & Soren Hein.

   See LICENSE and README.
*/


#include <memory>
#include <algorithm>

#include "CalcTables.h"
#include "SolverIF.h"
#include "SolveBoard.h"
#include "System.h"
#include "Memory.h"
#include "Scheduler.h"
#include "PBN.h"


paramType cparam;

extern System sysdep;
extern Memory memory;
extern Scheduler scheduler;

int CalcAllBoardsN(
  boards * bop,
  solvedBoards * solvedp);


void CalcSingleCommon(
  const int thrId,
  const int bno)
{
  // Solves a single deal and strain for all four declarers.

  futureTricks fut;
  cparam.bop->deals[bno].first = 0;

  START_THREAD_TIMER(thrId);
  int res = SolveBoard(
                cparam.bop->deals[bno],
                cparam.bop->target[bno],
                cparam.bop->solutions[bno],
                cparam.bop->mode[bno],
                &fut,
                thrId);

  // SH: I'm making a terrible use of the fut structure here.

  if (res == 1)
    cparam.solvedp->solvedBoard[bno].score[0] = fut.score[0];
  else
    cparam.error = res;

  ThreadData * thrp = memory.GetPtr(static_cast<unsigned>(thrId));
  for (int k = 1; k < DDS_HANDS; k++)
  {
    int hint = (k == 2 ? fut.score[0] : 13 - fut.score[0]);

    cparam.bop->deals[bno].first = k; // Next declarer

    res = SolveSameBoard(thrp, cparam.bop->deals[bno], &fut, hint);

    if (res == 1)
      cparam.solvedp->solvedBoard[bno].score[k] = fut.score[0];
    else
      cparam.error = res;
  }
  END_THREAD_TIMER(thrId);
}


void CopyCalcSingle(const vector<int>& crossrefs)
{
  for (unsigned i = 0; i < crossrefs.size(); i++)
  {
    if (crossrefs[i] == -1)
      continue;

    START_THREAD_TIMER(thrId);
    for (int k = 0; k < DDS_HANDS; k++)
      cparam.solvedp->solvedBoard[i].score[k] = 
        cparam.solvedp->solvedBoard[ crossrefs[i] ].score[k];
    END_THREAD_TIMER(thrId);
  }
}


void CalcChunkCommon(
  const int thrId)
{
  // Solves each deal and strain for all four declarers.
  vector<futureTricks> fut;
  fut.resize(static_cast<unsigned>(cparam.noOfBoards));

  int index;
  schedType st;

  while (1)
  {
    st = scheduler.GetNumber(thrId);
    index = st.number;
    if (index == -1)
      break;

    if (st.repeatOf != -1)
    {
      START_THREAD_TIMER(thrId);
      for (int k = 0; k < DDS_HANDS; k++)
      {
        cparam.bop->deals[index].first = k;

        cparam.solvedp->solvedBoard[index].score[k] =
          cparam.solvedp->solvedBoard[ st.repeatOf ].score[k];
      }
      END_THREAD_TIMER(thrId);
      continue;
    }

    CalcSingleCommon(thrId, index);
  }
}


int CalcAllBoardsN(
  boards * bop,
  solvedBoards * solvedp)
{
  cparam.error = 0;

  if (bop->noOfBoards > MAXNOOFBOARDS)
    return RETURN_TOO_MANY_BOARDS;

  cparam.bop = bop;
  cparam.solvedp = solvedp;
  cparam.noOfBoards = bop->noOfBoards;

  scheduler.RegisterRun(DDS_RUN_CALC, * bop);
  sysdep.RegisterRun(DDS_RUN_CALC, * bop);

  for (int k = 0; k < bop->noOfBoards; k++)
    solvedp->solvedBoard[k].cards = 0;

  START_BLOCK_TIMER;
  int retRun = sysdep.RunThreads();
  END_BLOCK_TIMER;

  if (retRun != RETURN_NO_FAULT)
    return retRun;

  solvedp->noOfBoards = cparam.noOfBoards;

#ifdef DDS_SCHEDULER 
  scheduler.PrintTiming();
#endif

  if (cparam.error == 0)
    return RETURN_NO_FAULT;
  else
    return cparam.error;
}



int STDCALL CalcDDtable(
  ddTableDeal tableDeal,
  ddTableResults * tablep)
{
  deal dl;
  static auto bo = std::make_unique<boards>();
  static auto solved = std::make_unique<solvedBoards>();

  for (int h = 0; h < DDS_HANDS; h++)
    for (int s = 0; s < DDS_SUITS; s++)
      dl.remainCards[h][s] = tableDeal.cards[h][s];

  for (int k = 0; k <= 2; k++)
  {
    dl.currentTrickRank[k] = 0;
    dl.currentTrickSuit[k] = 0;
  }

  int ind = 0;
  bo->noOfBoards = DDS_STRAINS;

  for (int tr = DDS_STRAINS-1; tr >= 0; tr--)
  {
    dl.trump = tr;
    bo->deals[ind] = dl;
    bo->target[ind] = -1;
    bo->solutions[ind] = 1;
    bo->mode[ind] = 1;
    ind++;
  }

  int res = CalcAllBoardsN(bo.get(), solved.get());
  if (res != 1)
    return res;

  for (int index = 0; index < DDS_STRAINS; index++)
  {
    int strain = bo->deals[index].trump;

    // SH: I'm making a terrible use of the fut structure here.

    for (int first = 0; first < DDS_HANDS; first++)
    {
      tablep->resTable[strain][ rho[first] ] =
        13 - solved->solvedBoard[index].score[first];
    }
  }
  return RETURN_NO_FAULT;
}


int STDCALL CalcAllTables(
  ddTableDeals * dealsp,
  int mode,
  int trumpFilter[5],
  ddTablesRes * resp,
  allParResults * presp)
{
  /* mode = 0: par calculation, vulnerability None
     mode = 1: par calculation, vulnerability All
     mode = 2: par calculation, vulnerability NS
     mode = 3: par calculation, vulnerability EW
         mode = -1: no par calculation */

  static auto bo = std::make_unique<boards>();
  static auto solved = std::make_unique<solvedBoards>();
  int count = 0;
  bool okey = false;

  for (int k = 0; k < DDS_STRAINS; k++)
  {
    if (!trumpFilter[k])
    {
      okey = true;
      count++;
    }
  }

  if (!okey)
    return RETURN_NO_SUIT;

  if (count * dealsp->noOfTables > MAXNOOFTABLES * DDS_STRAINS)
    return RETURN_TOO_MANY_TABLES;

  int ind = 0;
  int lastIndex = 0;
  resp->noOfBoards = 0;

  for (int m = 0; m < dealsp->noOfTables; m++)
  {
    for (int tr = DDS_STRAINS-1; tr >= 0; tr--)
    {
      if (trumpFilter[tr])
        continue;

      for (int h = 0; h < DDS_HANDS; h++)
        for (int s = 0; s < DDS_SUITS; s++)
          bo->deals[ind].remainCards[h][s] =
            dealsp->deals[m].cards[h][s];

      bo->deals[ind].trump = tr;

      for (int k = 0; k <= 2; k++)
      {
        bo->deals[ind].currentTrickRank[k] = 0;
        bo->deals[ind].currentTrickSuit[k] = 0;
      }

      bo->target[ind] = -1;
      bo->solutions[ind] = 1;
      bo->mode[ind] = 1;
      lastIndex = ind;
      ind++;
    }
  }

  bo->noOfBoards = lastIndex + 1;

  int res = CalcAllBoardsN(bo.get(), solved.get());
  if (res != 1)
    return res;

  resp->noOfBoards += 4 * solved->noOfBoards;

  for (int m = 0; m < dealsp->noOfTables; m++)
  {
    for (int strainIndex = 0; strainIndex < count; strainIndex++)
    {
      int index = m * count + strainIndex;
      int strain = bo->deals[index].trump;

      // SH: I'm making a terrible use of the fut structure here.

      for (int first = 0; first < DDS_HANDS; first++)
      {
        resp->results[m].resTable[strain][ rho[first] ] =
          13 - solved->solvedBoard[index].score[first];
      }
    }
  }

  if ((mode > -1) && (mode < 4) && (count == 5))
  {
    /* Calculate par */
    for (int k = 0; k < dealsp->noOfTables; k++)
    {
      res = Par(&(resp->results[k]), &(presp->presults[k]), mode);
      /* vulnerable 0: None 1: Both 2: NS 3: EW */
      if (res != 1)
        return res;
    }
  }
  return RETURN_NO_FAULT;
}


int STDCALL CalcAllTablesPBN(
  ddTableDealsPBN * dealsp,
  int mode,
  int trumpFilter[5],
  ddTablesRes * resp,
  allParResults * presp)
{
  static auto dls = std::make_unique<ddTableDeals>();
  for (int k = 0; k < dealsp->noOfTables; k++)
    if (ConvertFromPBN(dealsp->deals[k].cards, dls->deals[k].cards) != 1)
      return RETURN_PBN_FAULT;

  dls->noOfTables = dealsp->noOfTables;

  int res = CalcAllTables(dls.get(), mode, trumpFilter, resp, presp);
  return res;
}


int STDCALL CalcDDtablePBN(
  ddTableDealPBN tableDealPBN,
  ddTableResults * tablep)
{
  ddTableDeal tableDeal;
  if (ConvertFromPBN(tableDealPBN.cards, tableDeal.cards) != 1)
    return RETURN_PBN_FAULT;

  int res = CalcDDtable(tableDeal, tablep);
  return res;
}


void DetectCalcDuplicates(
  const boards& bds,
  vector<int>& uniques,
  vector<int>& crossrefs)
{
  // Could save a little bit of time with a dedicated checker that
  // only looks at the cards.
  return DetectSolveDuplicates(bds, uniques, crossrefs);
}


int STDCALL CalcAllTablesPBNx(
  int numDeals,
  ddTableDealPBN dealCards[],
  int mode,
  int trumpFilter[5],
  ddTableResults results[],
  parResults par[])
{
  if (numDeals < 1)
    return RETURN_UNKNOWN_FAULT;

  int activeStrains = 0;
  for (int k = 0; k < DDS_STRAINS; k++)
    if (!trumpFilter[k])
      activeStrains++;
  if (activeStrains == 0)
    return RETURN_NO_SUIT;

  // Internal chunk capacity: how many deals fit in one CalcAllBoardsN
  // call given that each deal expands to activeStrains boards.
  const int chunkDeals = MAXNOOFBOARDS / activeStrains;
  if (chunkDeals < 1)
    return RETURN_TOO_MANY_BOARDS;

  // Allocated once on first call, reused on all subsequent calls.
  // Safe: CalcAllBoardsN uses global state so the API is already
  // single-caller; no concurrent access to these buffers is possible.
  static auto bo     = std::make_unique<boards>();
  static auto solved = std::make_unique<solvedBoards>();

  int dealt = 0;
  while (dealt < numDeals)
  {
    const int batchDeals = (std::min)(numDeals - dealt, chunkDeals);

    // Convert PBN cards and expand strains into boards
    int ind = 0;
    for (int m = 0; m < batchDeals; m++)
    {
      ddTableDeal tableDeal;
      if (ConvertFromPBN(dealCards[dealt + m].cards,
                         tableDeal.cards) != 1)
        return RETURN_PBN_FAULT;

      for (int tr = DDS_STRAINS - 1; tr >= 0; tr--)
      {
        if (trumpFilter[tr])
          continue;

        for (int h = 0; h < DDS_HANDS; h++)
          for (int s = 0; s < DDS_SUITS; s++)
            bo->deals[ind].remainCards[h][s] = tableDeal.cards[h][s];

        bo->deals[ind].trump = tr;
        for (int k = 0; k <= 2; k++)
        {
          bo->deals[ind].currentTrickRank[k] = 0;
          bo->deals[ind].currentTrickSuit[k] = 0;
        }
        bo->target[ind]    = -1;
        bo->solutions[ind] = 1;
        bo->mode[ind]      = 1;
        ind++;
      }
    }

    bo->noOfBoards = ind;

    int res = CalcAllBoardsN(bo.get(), solved.get());
    if (res != RETURN_NO_FAULT)
      return res;

    // Scatter results back to caller arrays
    for (int m = 0; m < batchDeals; m++)
    {
      for (int si = 0; si < activeStrains; si++)
      {
        int boardIdx = m * activeStrains + si;
        int strain   = bo->deals[boardIdx].trump;

        for (int first = 0; first < DDS_HANDS; first++)
          results[dealt + m].resTable[strain][rho[first]] =
            13 - solved->solvedBoard[boardIdx].score[first];
      }
    }

    // Par calculation if requested
    if (mode > -1 && mode < 4 && activeStrains == 5 && par != nullptr)
    {
      for (int m = 0; m < batchDeals; m++)
      {
        int res2 = Par(&results[dealt + m], &par[dealt + m], mode);
        if (res2 != RETURN_NO_FAULT)
          return res2;
      }
    }

    dealt += batchDeals;
  }

  return RETURN_NO_FAULT;
}