dds-bridge-sys 3.0.0

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_TIMERGROUP_H
#define DDS_TIMERGROUP_H

#include <string>
#include <vector>

#include <system/timer.hpp>


/**
 * @brief Group of timers for profiling bridge double dummy solver operations.
 *
 * The TimerGroup class manages a collection of Timer objects, allowing
 * simultaneous profiling of multiple solver operations or phases. It supports
 * starting, stopping, and reporting on grouped timing measurements for detailed
 * performance analysis. Used internally for fine-grained profiling.
 */
class TimerGroup
{
  private:

    std::vector<Timer> timers;
    std::string bname;

  public:

    /**
     * @brief Construct a new TimerGroup object.
     *
     * Initializes the group of timers and prepares for grouped profiling.
     */
    TimerGroup();

    /**
     * @brief Destroy the TimerGroup object and clean up resources.
     *
     * Releases all memory and resets the group state.
     */
    ~TimerGroup();

    void Reset();

    void SetNames(const std::string& baseName);

    void Start(const unsigned no);

    void End(const unsigned no);

    bool Used() const;

    void Differentiate();

    void Sum(Timer& sum) const;

    void operator -= (const TimerGroup& deduct);

    std::string Header() const;
    std::string DetailHeader() const;
    std::string SumLine(const Timer& sumTotal) const;
    std::string TimerLines(const Timer& sumTotal) const;
    std::string DetailLines() const;
    std::string DashLine() const;
};

#endif