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_ABSTATS_H
#define DDS_ABSTATS_H

#include <iostream>
#include <fstream>
#include <string>

#include "debug.h"

using namespace std;


/*
   AB_COUNT is a macro that avoids the tedious #ifdef's at
   the code places to be counted.
*/

#ifdef DDS_AB_STATS
  #define AB_COUNT(a, b, c) thrp->ABStats.IncrPos(a, b, c)
#else
  #define AB_COUNT(a, b, c) 1
#endif


enum ABCountType
{
  AB_TARGET_REACHED = 0,
  AB_DEPTH_ZERO = 1,
  AB_QUICKTRICKS = 2,
  AB_QUICKTRICKS_2ND = 3,
  AB_LATERTRICKS = 4,
  AB_MAIN_LOOKUP = 5,
  AB_SIDE_LOOKUP = 6,
  AB_MOVE_LOOP = 7,
  AB_SIZE = 8
};

#define DDS_MAXDEPTH 49


struct ABtracker
{
  int list[DDS_MAXDEPTH];
  int sum;
  int sumWeighted;
  int sumCum;
  int sumCumWeighted;
};


class ABstats
{
  private:

    string name[AB_SIZE];

    // A node arises when a new move is generated.
    // Not every move leads to an AB termination.
    ABtracker ABnodes;
    ABtracker ABnodesCum;

    // AB terminations are tracked by side and position.
    ABtracker ABsides[2];
    ABtracker ABplaces[AB_SIZE];

    void SetNames();

    void PrintHeaderPosition(ofstream& fout) const; 

    void PrintStatsPosition(
      ofstream& fout,
      const int no,
      const string& text,
      const ABtracker& abt,
      const ABtracker& divisor) const;

    void PrintHeaderDepth(ofstream& fout) const; 

    void PrintStatsDepth(
      ofstream& fout,
      const int depth,
      const int cum) const; 

    void PrintAverageDepth(
      ofstream& fout,
      const ABtracker& ABsidesSum) const; 

    void PrintHeaderDetail(ofstream& fout) const; 

    void PrintStatsDetail(
      ofstream& fout,
      const int depth) const; 

    void PrintSumDetail(ofstream& fout) const; 

  public:

    ABstats();

    ~ABstats();

    void Reset();

    void ResetCum();

    void IncrPos(
      const ABCountType no, 
      const bool side, 
      const int depth);

    void IncrNode(const int depth);

    int GetNodes() const;

    void PrintStats(ofstream& fout);
};

#endif