mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 21:48:11 -05:00
21 lines
312 B
C++
21 lines
312 B
C++
/*
|
|
* ExecutionsStats.h
|
|
*
|
|
*/
|
|
|
|
#ifndef TOOLS_EXECUTIONSTATS_H_
|
|
#define TOOLS_EXECUTIONSTATS_H_
|
|
|
|
#include <map>
|
|
using namespace std;
|
|
|
|
class ExecutionStats : public map<int, size_t>
|
|
{
|
|
public:
|
|
ExecutionStats& operator+=(const ExecutionStats& other);
|
|
|
|
void print();
|
|
};
|
|
|
|
#endif /* TOOLS_EXECUTIONSTATS_H_ */
|