mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 22:17:57 -05:00
16 lines
274 B
C++
16 lines
274 B
C++
/*
|
|
* simple-offline.cpp
|
|
*
|
|
*/
|
|
|
|
#include <FHEOffline/SimpleMachine.h>
|
|
#include "Tools/callgrind.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
CALLGRIND_STOP_INSTRUMENTATION;
|
|
SimpleMachine machine(argc, argv);
|
|
CALLGRIND_START_INSTRUMENTATION;
|
|
machine.run();
|
|
}
|