Files
MP-SPDZ/pairwise-offline.cpp
Marcel Keller 2008a8782d Overdrive.
2018-03-02 14:33:03 +00:00

13 lines
300 B
C++

// (C) 2018 University of Bristol. See License.txt
#include "FHEOffline/PairwiseMachine.h"
#include <valgrind/callgrind.h>
int main(int argc, const char** argv)
{
CALLGRIND_STOP_INSTRUMENTATION;
PairwiseMachine machine(argc, argv);
CALLGRIND_START_INSTRUMENTATION;
machine.run();
}