mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
13 lines
174 B
C++
13 lines
174 B
C++
/*
|
|
* cnc-offline.cpp
|
|
*
|
|
*/
|
|
|
|
#include "FHEOffline/CutAndChooseMachine.h"
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
CutAndChooseMachine(argc, argv).run();
|
|
return 0;
|
|
}
|