dds-bridge-sys 2.1.1

Generated bindings to DDS, the double dummy solver for bridge
Documentation
/*
   DDS, a bridge double dummy solver.

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

   See LICENSE and README.
*/

#ifndef DDS_PLAYANALYSER_H
#define DDS_PLAYANALYSER_H

#include <vector>

#include "dds.h"

using namespace std;


void PlaySingleCommon(
  const int thrId,
  const int bno);

void PlayChunkCommon(
  const int thrId);

void DetectPlayDuplicates(
  const boards& bds,
  vector<int>& uniques,
  vector<int>& crossrefs);

void CopyPlaySingle(
  const vector<int>& crossrefs);

#endif