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