Files
MP-SPDZ/Tools/ExecutionStats.h
Marcel Keller 253ece7844 Maintenance.
2021-01-21 11:06:18 +11:00

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_ */