mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
11 lines
249 B
C++
11 lines
249 B
C++
#include "FHEOffline/PairwiseMachine.h"
|
|
#include "Tools/callgrind.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
CALLGRIND_STOP_INSTRUMENTATION;
|
|
RealPairwiseMachine machine(argc, argv);
|
|
CALLGRIND_START_INSTRUMENTATION;
|
|
machine.run();
|
|
}
|